-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
84 lines (84 loc) · 1.87 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
{
"name": "react-stylesheet",
"version": "2.2.2",
"description": "Style React component",
"main": "lib/index.js",
"files": [
"lib/",
"css.js",
"testutils.js",
"testutils-snapshot-serializer.js"
],
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prometheusresearch/react-stylesheet.git"
},
"keywords": [
"react",
"stylesheet",
"dom"
],
"babel": {
"presets": [
"prometheusresearch"
]
},
"eslintConfig": {
"extends": "prometheusresearch",
"globals": {
"ReactClass": true,
"$Abstract": true
}
},
"nyc": {
"exclude": [
"*.js",
"lib/*.js",
"coverage/*.js",
"**/__tests__/*.js"
]
},
"author": "Prometheus Research, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/prometheusresearch/react-stylesheet/issues"
},
"homepage": "https://github.com/prometheusresearch/react-stylesheet#readme",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-generator": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-preset-prometheusresearch": "^1.0.0",
"babel-types": "^6.24.1",
"css-tree": "^1.0.0-alpha19",
"doctoc": "^1.3.0",
"eslint": "^3.19.0",
"eslint-config-prometheusresearch": "^0.4.0",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.66.0",
"invariant": "^2.2.1",
"jest-cli": "^20.0.4",
"prettier": "^1.9.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.6.1"
},
"dependencies": {
"fbjs": "^0.8.9",
"inline-style-prefix-all": "^2.0.2",
"invariant": "^2.2.1",
"murmurhash-js": "^1.0.0",
"style-loader": "^0.13.0"
}
}