-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 951 Bytes
/
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
{
"name": "react-classmap",
"version": "1.0.0",
"description": "Define a mapping of additional class names to apply to your React DOM components",
"main": "lib/index.js",
"scripts": {
"build": "babel src/ -d lib/",
"prepublish": "npm run build",
"test": "mocha src/__tests__ --require babel/register --require src/__tests__/setup"
},
"author": "Botify <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:botify-labs/react-classmap.git"
},
"license": "MIT",
"devEngines": {
"node": "4.x"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"expect": "^1.12.2",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0"
},
"dependencies": {
"hoist-non-react-statics": "^1.0.3"
}
}