forked from jamesknelson/react-pacomo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "react-pacomo",
"version": "0.5.3",
"description": "Provide structure to your component's CSS.",
"main": "lib/pacomo.js",
"scripts": {
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run compile",
"test": "npm run compile && mocha --compilers js:babel-core/register",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesknelson/react-pacomo.git"
},
"keywords": [
"react",
"component",
"decorator",
"decorators",
"classes",
"props",
"pacomo"
],
"author": "James K Nelson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesknelson/react-pacomo/issues"
},
"homepage": "https://github.com/jamesknelson/react-pacomo#readme",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"babel-polyfill": "^6.1.18",
"classnames": "^2.1.3",
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"mocha": "^2.3.0",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0"
}
}