-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "react-json-schema",
"version": "1.2.2",
"description": "Write component schema in JSON; parse to create react elements.",
"keywords": [
"react",
"JSON",
"schema",
"components"
],
"author": {
"name": "A collaborative project overseen by Club OS",
"url": "https://club-os.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/TechniqueSoftware/react-json-schema"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TechniqueSoftware/react-json-schema/issues"
},
"scripts": {
"build": "eslint lib/ReactJsonSchema.js && webpack --progress --profile --colors --config webpack.config.dist.js",
"jasmine": "eslint lib/ReactJsonSchema.js && jasmine spec/spec.js",
"pretest": "eslint lib/ReactJsonSchema.js && webpack --progress --profile --colors --config webpack.config.spec.js",
"test": "npm run jasmine",
"preversion": "npm run jasmine",
"version": "npm run build && git add -A",
"postversion": "git push origin master && git push origin --tags"
},
"main": "dist/react-json-schema.js",
"files": [
"lib",
"dist"
],
"engines": {
"node": ">=6.4.0"
},
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jasmine": "^2.99.0",
"path": "^0.12.7",
"react": "^16.2.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^3.11.0"
},
"dependencies": {
"react-dom-factories": "^1.0.2"
}
}