forked from gajus/react-strict-prop-types
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "react-strict-prop-types",
"description": "A higher order component that raises an error if component is used with an unknown property.",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gajus/react-strict-prop-types"
},
"keywords": [
"react-component",
"react",
"strict",
"propTypes"
],
"version": "0.8.0",
"author": {
"name": "Gajus Kuizinas",
"email": "gajus@gajus.com",
"url": "http://gajus.com"
},
"license": "BSD-3-Clause",
"devDependencies": {
"chai": "^3.4.1",
"jsdom": "^7.1.0",
"mocha": "^2.3.4",
"pragmatist": "^1.8.0",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"sinon": "^1.17.2",
"lodash": "^4.13.1"
},
"scripts": {
"pragmatist": "node ./node_modules/.bin/pragmatist",
"lint": "npm run pragmatist lint",
"test": "npm run pragmatist test",
"build": "npm run pragmatist build",
"watch": "npm run pragmatist watch"
},
"dependencies": { }
}