forked from cxs-css/cxs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 819 Bytes
/
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
{
"name": "@imedadel/cxs",
"version": "0.1.3",
"description": "Smallest and fastest css-in-js library, 0.4kb",
"repository": "https://github.com/ImedAdel/cxs",
"author": "Imed Adel <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"husky": "^4.2.3",
"microbundle": "^0.11.0",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1"
},
"source": "src/index.js",
"main": "dist/cxs.js",
"module": "dist/cxs.module.js",
"unpkg": "dist/cxs.umd.js",
"files": [
"dist"
],
"keywords": [
"styles",
"emotion",
"react",
"css",
"css-in-js"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepare": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}