-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 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
{
"name": "react-json-renderer",
"version": "0.6.0",
"description": "Render React components to a JSON tree",
"repository": {
"type": "git",
"url": "git+https://github.com/MainframeHQ/react-json-renderer.git"
},
"keywords": ["react", "json", "renderer"],
"bugs": {
"url": "https://github.com/MainframeHQ/react-json-renderer/issues"
},
"homepage": "https://github.com/MainframeHQ/react-json-renderer#readme",
"author": "Mainframe",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"build:clean": "del es lib",
"compile:lib": "babel src --out-dir lib",
"compile:es": "BABEL_ENV=esm babel src --out-dir es",
"build:compile": "npm run compile:lib && npm run compile:es",
"build:flow": "flow-copy-source src lib && flow-copy-source src es",
"build":
"npm run build:clean && npm run build:compile && npm run build:flow",
"flow": "flow check",
"lint": "eslint ./src",
"jest": "BABEL_ENV=development jest",
"test": "npm run lint && npm run flow && npm run jest",
"start": "npm test && npm run build",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"del-cli": "^1.1.0",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.69.0",
"flow-copy-source": "^1.2.1",
"jest": "^22.0.4",
"prettier": "^1.9.2",
"react": "^16.2.0",
"react-test-renderer": "^16.2.0"
},
"jest": {
"collectCoverage": true
}
}