This repository has been archived by the owner on Oct 11, 2018. It is now read-only.
forked from styled-system/styled-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.08 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
{
"name": "styled-system",
"version": "3.1.6",
"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",
"clean": "rm -rf dist && mkdir dist",
"build:cjs": "NODE_ENV=cjs babel src -o dist/index.cjs.js",
"build:esm": "NODE_ENV=esm babel src -o dist/index.esm.js",
"start": "mdx-go docs",
"docs": "mdx-go build docs -d site",
"logo": "npx repng docs/Logo.js -d docs -f logo.png -w 512 -h 512 -p '{\"size\":512}'",
"logo-svg": "scrs docs/Logo.js --svg > docs/logo.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",
"pkg:clean": "node scripts/clean",
"pkg:test": "node scripts/test",
"pkg:prepare": "node scripts/run install"
},
"keywords": [
"react",
"css-in-js",
"styled-components",
"glamorous"
],
"author": "Brent Jackson",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"ava": "^1.0.0-beta.8",
"benchmark": "^2.1.4",
"is-ci": "^1.1.0",
"mdx-go": "^2.0.0-22",
"nyc": "^12.0.2",
"react": "^16.4.0",
"react-live": "^1.11.0",
"react-test-renderer": "^16.4.0",
"rebass": "^3.0.0-8",
"scrs": "^1.1.0",
"styled-components": "^4.0.0-beta.8"
},
"ava": {
"require": [
"@babel/register"
]
},
"nyc": {
"exclude": [
"test/**/*",
"**/babel.config.js",
"docs",
"bench",
"examples"
]
},
"bundlesize": [
{
"path": "dist/*"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/jxnblk/styled-system.git"
},
"dependencies": {
"prop-types": "^15.6.2"
}
}