forked from aweary/react-is-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 851 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
{
"name": "react-is-deprecated",
"version": "0.1.2",
"description": "Adds an isDeprecated method to the React.PropTypes object",
"main": "dist.js",
"scripts": {
"test": "mocha test",
"build": "babel index.js --out-file dist.js --presets es2015 --plugins transform-object-rest-spread",
"prepublish": "npm run build",
"pretest": "npm run build"
},
"keywords": [
"react",
"propTypes",
"isDeprecated"
],
"author": "Brandon Dail",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"prop-types": "^15.5.10",
"react": "^0.14.7"
},
"repository": {
"type": "git",
"url": "https://www.github.com/Aweary/react-is-deprecated.git"
}
}