forked from rjsf-team/react-jsonschema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.36 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
{
"name": "react-jsonschema-form",
"version": "0.12.0",
"description": "A simple React component capable of building HTML forms out of a JSON schema.",
"scripts": {
"build:css": "cp css/react-jsonschema-form.css dist/",
"build:lib": "rimraf lib && babel -d lib/ src/",
"build:dist": "rimraf dist && webpack --config webpack.config.dist.js --optimize-minimize",
"build:playground": "rimraf build && webpack --config webpack.config.prod.js --optimize-minimize && cp playground/index.prod.html build/index.html",
"dist": "npm run build:lib && npm run build:dist && npm run build:css",
"lint": "eslint src test",
"publish-to-gh-pages": "npm run build:playground && gh-pages --dist build/",
"publish-to-npm": "npm run dist && npm publish",
"start": "node devServer.js",
"tdd": "npm run test -- -w",
"test": "NODE_ENV=test mocha --compilers js:babel/register --recursive --require ./test/setup-jsdom.js $(find test -name '*_test.js')"
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"peerDependencies": {
"react": "^0.14.3",
"react-dom": "^0.14.3"
},
"dependencies": {
"jsonschema": "^1.0.2"
},
"devDependencies": {
"babel": "^5.8.20",
"babel-eslint": "^4.1.6",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"chai": "^3.3.0",
"codemirror": "^5.10.0",
"css-loader": "^0.23.1",
"eslint": "^1.8.0",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.9.1",
"gh-pages": "^0.4.0",
"html": "0.0.10",
"jsdom": "^7.2.1",
"mocha": "^2.3.0",
"react-addons-test-utils": "^0.14.3",
"react-codemirror": "^0.2.3",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"rimraf": "^2.4.4",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"webpack": "^1.10.5",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-services/react-jsonschema-form.git"
},
"author": "Nicolas Perriault <[email protected]>",
"keywords": [
"react",
"form",
"json-schema"
],
"license": "Apache-2.0",
"homepage": "https://github.com/mozilla-services/react-jsonschema-form#readme"
}