-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
41 lines (41 loc) · 1022 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
38
39
40
41
{
"name": "react-perimeter",
"version": "0.4.0",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"prepublish": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/aweary/react-perimeter.git"
},
"author": {
"name": "Brandon Dail",
"email": "[email protected]",
"url": "https://www.twitter.com/aweary"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-preset-react": "^6.23.0",
"enzyme": "^2.7.1",
"flow-bin": "^0.41.0",
"jest": "^19.0.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"optionalDependencies": {
"react-listener-provider": "^0.2.0"
}
}