This repository was archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.81 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "react-prop-types",
"version": "0.4.0",
"description": "Additional PropTypes for React",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src -d lib",
"lint": "eslint src test *.js",
"mocha": "mocha --compilers js:babel-register test/*.test.js",
"prepublish": "npm run build",
"tdd": "npm run testonly -- -w -R min",
"test": "npm run lint && npm run testonly",
"testonly": "NODE_ENV=test nyc npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-bootstrap/react-prop-types.git"
},
"keywords": [
"react",
"proptypes"
],
"author": "Matthew L Smith <mtscout6@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-bootstrap/react-prop-types/issues"
},
"homepage": "https://github.com/react-bootstrap/react-prop-types#readme",
"dependencies": {
"warning": "^3.0.0"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.2",
"babel-plugin-istanbul": "^1.0.3",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-mocha": "^4.0.0",
"eslint-plugin-react": "^5.2.2",
"mocha": "^2.5.3",
"nyc": "^7.0.0",
"react": "^15.2.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"nyc": {
"include": [
"src"
],
"sourceMap": false,
"instrument": false
}
}