-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 918 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
{
"name": "proper-types",
"version": "1.1.1",
"description": "propTypes wrapper for more accessibility",
"main": "build/node/index.js",
"browser": "build/web/index.js",
"files": [
"build/"
],
"repository": "https://github.com/magic-m-johnson/proper-types.git",
"author": "markus.michalsky <[email protected]>",
"license": "MIT",
"scripts": {
"build:node": "BABEL_ENV=node babel index.js -d build/node/",
"build:web": "BABEL_ENV=web babel index.js -d build/web/",
"build": "NODE_ENV=production npm run build:node && npm run build:web",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"prop-types": "^15.6.1",
"recompose": "^0.26.0"
},
"peerDependencies": {
"prop-types": "^15.6.1",
"recompose": "^0.26.0"
}
}