-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "numl-utils",
"version": "0.1.0",
"description": "Low-level CSS utils",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"typings": "tsc --allowJs -d --emitDeclarationOnly src/index.js && mv ./src/index.d.ts ./dist/ && rm ./src/*.d.ts",
"build": "npm run typings && rollup --config rollup.config.js",
"test": "web-test-runner test/*.test.js --node-resolve",
"test-watch": "web-test-runner --watch test/*.test.js --node-resolve",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/numldesign/utils.git"
},
"keywords": [
"css",
"framework",
"customization",
"design-system"
],
"author": "Andrey Yamanov <tenphi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/numldesign/utils/issues"
},
"homepage": "https://github.com/numldesign/utils#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@open-wc/testing": "^2.5.32",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@web/test-runner": "^0.10.2",
"rollup": "^2.38.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.3"
}
}