-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 KB
/
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
42
43
44
45
46
47
48
49
{
"name": "react-immutable-proptypes",
"version": "2.2.0",
"description": "PropType validators that work with Immutable.js.",
"main": "dist/ImmutablePropTypes.js",
"scripts": {
"build": "./scripts/build",
"test": "./scripts/test",
"test-cov": "./scripts/test-cov",
"prepublish": "npm run build",
"lint": "./node_modules/.bin/eslint ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/HurricaneJames/react-immutable-proptypes"
},
"keywords": [
"react",
"immutable-js",
"immutable",
"immutablejs",
"proptype"
],
"author": "James Burnett <HurricaneJamesEsq@gmail.com> (https://github.com/HurricaneJames/react-immutable-proptypes)",
"license": "MIT",
"bugs": {
"url": "https://github.com/HurricaneJames/react-immutable-proptypes/issues"
},
"homepage": "https://github.com/HurricaneJames/react-immutable-proptypes",
"peerDependencies": {
"immutable": ">=3.6.2"
},
"devDependencies": {
"babel": "^4.6.6",
"babel-eslint": "^3.1.1",
"eslint": "^6.6.0",
"eslint-plugin-react": "^2.2.0",
"expect.js": "^0.3.1",
"immutable": "^3.7.4",
"istanbul": "~0.3.7",
"mocha": "^2.3.3",
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"dependencies": {
"invariant": "^2.2.2"
},
"typings": "typings/index.d.ts"
}