forked from TechniqueSoftware/react-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.25 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
67
68
69
70
71
72
73
74
{
"name": "react-json-schema",
"version": "1.0.2",
"description": "Write component schema in JSON; parse to create react elements.",
"keywords": [
"react",
"JSON",
"schema",
"components"
],
"author": {
"name": "elliottisonfire",
"url": "http://elliottisonfire.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": {
"prebuild": "rm -rf dist && mkdir dist",
"build": "babel lib/ReactJsonSchema.js -o dist/react-json-schema.js",
"postbuild": "node_modules/uglify-js/bin/uglifyjs dist/react-json-schema.js -o dist/react-json-schema.min.js -m --stats",
"demo": "webpack-dev-server --progress --colors --inline --config webpack.config.demo.js",
"jasmine": "jasmine spec/spec.js",
"jasmine-strict": "jasmine spec/spec.js",
"pretest": "webpack --progress --profile --colors --config webpack.config.spec.js",
"test": "npm run jasmine",
"preversion": "npm run jasmine-strict",
"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"
],
"peerDependencies": {
"react": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^6.1.2",
"babel-loader": "6.2.4",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"bootstrap": "^3.3.5",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.2.2",
"file-loader": "^0.8.4",
"jasmine": "^2.3.2",
"jsx-loader": "^0.13.2",
"path": "^0.12.7",
"uglify-js": "^2.7.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.2.0",
"react-dom-factories": "^1.0.2"
}
}