-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.57 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
50
51
52
53
{
"name": "react-json-schema-proptypes",
"version": "0.4.0",
"description": "Dynamically generate React propType validators based on a JSON schema",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"babelize": "babel src -d lib --ignore *.spec.js --presets es2015,react,stage-0",
"build": "npm run babelize",
"lint": "eslint ./src",
"pretest": "npm run build && npm run lint",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-core/register --recursive --reporter spec ./**/*.spec.js",
"test-cover": "istanbul cover -i \"src/**/*.js\" -x \"src/**/*spec.js\" --report cobertura --report lcov --include-all-sources node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register --recursive --reporter spec ./**/*.spec.js",
"test-ci": "npm run test-cover"
},
"keywords": [
"React",
"PropTypes",
"JSON",
"schema"
],
"author": "Dow Jones",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.5",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.4.1",
"eslint": "^1.9.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.3.4",
"mocha-sinon": "^1.1.5",
"react": "^0.14.7",
"rimraf": "^2.5.2",
"sinon": "^1.17.3"
},
"dependencies": {
"ajv": "^3.8.5",
"ajv-i18n": "^1.2.0",
"faker": "^3.1.0",
"json-schema-faker": "^0.3.0",
"lodash": "^4.6.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
}
}