-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 950 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
33
34
35
36
37
38
39
{
"name": "hashmap-prop-type",
"version": "1.0.3",
"description": "A custom prop type validator for hash maps",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r babel-register -r test/bootstrap.js",
"lint": "eslint src test",
"build": "babel src -d dist",
"prebuild": "yarn lint && yarn test",
"prepublish": "yarn build"
},
"keywords": [
"prop-types",
"React",
"hash",
"map"
],
"author": "Nicolas Baptiste <[email protected]>",
"license": "ISC",
"repository": "euphocat/hashmap-prop-type",
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.6.0",
"eslint-config-iadvize": "^1.1.0",
"mocha": "^4.0.1",
"sinon": "^4.1.2",
"uuid": "^3.1.0"
}
}