-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
67 lines (67 loc) · 1.58 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
{
"name": "react-jsonschema-form-layout",
"version": "1.0.4",
"description": "react-jsonschema-form-layout React component",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"prepublish": "nwb build-react-component",
"build": "nwb build-react-component",
"clean": "nwb clean-module && npm clean-demo",
"start": "nwb serve-react-demo",
"test": "jest --coverage",
"test:coverage": "jest --coverage",
"test:watch": "nwb test-react --server",
"demo": "nwb build-demo"
},
"dependencies": {
"codecov.io": "^0.1.6",
"coveralls": "^2.11.16",
"react-bootstrap": " 0.30.7",
"react-jsonschema-form": "0.43.0"
},
"peerDependencies": {
"react": "15.x"
},
"devDependencies": {
"babel-eslint": "7.1.1",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"eslint": "3.16.1",
"eslint-plugin-react": "6.10.0",
"jest": "19.0.2",
"nwb": "0.15.x",
"nwb-less": " 0.5.1",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-dropzone": " 3.11.0",
"react-test-renderer": " 15.4.2"
},
"author": "Mario Scheliga <[email protected]>",
"homepage": "",
"license": "MIT",
"repository": "https://github.com/audibene-labs/react-jsonschema-form-layout",
"keywords": [
"react-component"
],
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}