forked from styled-system/styled-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "styled-system",
"version": "4.0.4",
"description": "Responsive, theme-based style props for building design systems with React",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"scripts": {
"prepare": "npm run clean && npm run build:cjs && npm run build:esm",
"prettier": "prettier \"{src,test}/**/*.js\" --write",
"clean": "rm -rf dist && mkdir dist",
"build:cjs": "cross-env NODE_ENV=cjs babel src -o dist/index.cjs.js",
"build:esm": "cross-env NODE_ENV=esm babel src -o dist/index.esm.js",
"logo-svg": "scrs docs/src/Logo.js --svg > docs/static/logo.svg",
"logo-white": "scrs docs/src/LogoWhite.js --svg > docs/static/logo-white.svg",
"size": "npx bundlesize",
"cover": "nyc report --reporter=html --reporter=lcov > coverage.lcov",
"codecov": "nyc report --reporter=html --reporter=lcov > coverage.lcov && npx codecov",
"test": "nyc ava",
"bench": "node bench",
"todo_fix__logo": "npx repng docs/src/Logo.js -d docs -f logo.png -w 512 -h 512 -p '{\"size\":512}'"
},
"keywords": [
"react",
"css-in-js",
"styled-components",
"glamorous"
],
"author": "Brent Jackson",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@emotion/core": "^10.0.9",
"@emotion/styled": "^10.0.9",
"ava": "^1.3.1",
"benchmark": "^2.1.4",
"cross-env": "^5.2.0",
"husky": "^1.3.1",
"is-ci": "^1.1.0",
"lint-staged": "^8.1.5",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"react": "^16.8.4",
"react-live": "^1.12.0",
"react-test-renderer": "^16.8.4",
"rebass": "^3.0.1",
"scrs": "^1.1.0",
"styled-components": "^4.1.3"
},
"ava": {
"require": [
"@babel/register"
]
},
"nyc": {
"exclude": [
"test/**/*",
"**/babel.config.js",
"docs",
"bench",
"examples",
"packages/**/*"
]
},
"bundlesize": [
{
"path": "dist/*"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/jxnblk/styled-system.git"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"prop-types": "^15.7.2"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
}
}