forked from vutran/react-jsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.88 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
{
"name": "react-jsonschema",
"version": "1.0.0",
"description": "React forms with JSONSchema",
"main": "lib/index.js",
"author": {
"name": "Vu Tran",
"email": "[email protected]",
"website": "http://vu-tran.com/"
},
"bugs": {
"web": "https://github.com/vutran/react-jsonschema/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:vutran/react-jsonschema.git"
},
"license": "MIT",
"homepage": "https://github.com/vutran/react-jsonschema",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clone": "^2.1.1",
"coveralls": "^2.13.0",
"enzyme": "^2.8.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"jsdom": "^9.12.0",
"json-loader": "^0.5.4",
"material-ui": "^0.17.3",
"prettier": "^0.22.0",
"react-addons-test-utils": "^15.5.1",
"react-tap-event-plugin": "^2.0.1",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
},
"scripts": {
"clean": "rimraf lib",
"lint": "prettier --single-quote --trailing-comma=es5 --print-width=90 --tab-width=4 --write 'src/*.js' 'index.js'",
"precommit": "npm run lint",
"compile": "babel ./src -d ./lib",
"build": "npm run clean && npm run compile",
"build-docs": "webpack --content-base docs --config docs/webpack.production.config.js",
"dev": "webpack-dev-server --content-base docs/ --config docs/webpack.config.js --inline --hot",
"prepublish": "npm run build",
"test": "jest --coverage",
"start": "npm run dev"
},
"dependencies": {
"glamor": "^2.20.24",
"lodash": "^4.17.4",
"prop-types": "^15.5.6",
"react": "^15.5.3",
"react-dom": "^15.5.3"
}
}