forked from styled-components/styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.28 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-components",
"version": "1.0.0",
"description": "Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:umd",
"prebuild:lib": "rm -rf lib/*",
"build:lib": "babel --out-dir lib src",
"prebuild:umd": "rm -rf dist/*",
"build:umd": "webpack --config webpack.config.babel.js",
"build:watch": "npm run build:lib -- --watch",
"test": "mocha \"./src/**/*.test.js\" --require babel-core/register --timeout 5000",
"test:watch": "npm run test -- --watch",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint": "eslint src",
"prepublish": "npm run build",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/styled-components/styled-components.git"
},
"keywords": [
"react",
"css",
"css-in-js"
],
"author": "Glen Maddern",
"license": "MIT",
"bugs": {
"url": "https://github.com/styled-components/styled-components/issues"
},
"homepage": "https://styled-components.com",
"dependencies": {
"buffer": "^5.0.0",
"fbjs": "^0.8.4",
"glamor": "^2.15.5",
"js-base64": "^2.1.9",
"lodash": "^4.15.0",
"react": "^15.3.2",
"source-map": "^0.5.6",
"supports-color": "^3.1.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.17.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-latest": "^6.14.0",
"babel-preset-react": "^6.11.1",
"chokidar": "^1.6.0",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-flowtype-errors": "^1.3.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.1",
"expect": "^1.20.2",
"flow-bin": "^0.32.0",
"lint-staged": "^3.0.3",
"mocha": "^3.0.2",
"pre-commit": "^1.1.3",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.13.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint-staged"
}