-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "react-emotion",
"version": "8.0.2-3",
"description": "The Next Generation of CSS-in-JS, for React projects.",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"files": [
"src",
"dist",
"macro.js"
],
"scripts": {
"build": "npm-run-all clean rollup rollup:umd",
"clean": "rimraf dist",
"rollup": "rollup -c ../../rollup.config.js",
"watch": "rollup -c ../../rollup.config.js --watch",
"rollup:umd": "cross-env UMD=true rollup -c ../../rollup.config.js"
},
"dependencies": {
"babel-plugin-emotion": "^8.0.2-3",
"emotion-utils": "^8.0.2-3"
},
"peerDependencies": {
"emotion": "^8.0.2-2"
},
"devDependencies": {
"cross-env": "^5.0.5",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"rollup": "^0.43.0"
},
"author": "Kye Hohenberger",
"homepage": "https://github.com/tkh44/emotion#readme",
"license": "MIT",
"repository": "https://github.com/tkh44/emotion/tree/master/packages/react-emotion",
"keywords": [
"styles",
"emotion",
"react",
"css",
"css-in-js"
],
"bugs": {
"url": "https://github.com/tkh44/emotion/issues"
}
}