-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 KB
/
package.json
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
47
48
49
50
{
"name": "hstyle",
"version": "0.1.6",
"description": "A component styling lib.",
"main": "dist/hstyle.umd.min.js",
"module": "dist/hstyle.min.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "rd /q /s dist typings raw || exit 0",
"build": "tsc && rollup -c",
"postbuild": "terser dist/hstyle.js --config-file terser.json --module -o dist/hstyle.min.js && terser dist/hstyle.umd.js --config-file terser.json -o dist/hstyle.umd.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huang2002/hstyle.git"
},
"keywords": [
"hstyle",
"style",
"stylesheet",
"class",
"css",
"css-in-js",
"component",
"scoped",
"collision-free",
"3h"
],
"author": "3h",
"license": "MIT",
"bugs": {
"url": "https://github.com/huang2002/hstyle/issues"
},
"homepage": "https://github.com/huang2002/hstyle#readme",
"files": [
"dist",
"typings",
"index.d.ts",
"README.md",
"LICENSE"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^3.0.7",
"terser": "^3.8.1",
"typescript": "^3.0.1"
}
}