-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "react-jsonschema-vis",
"version": "0.1.2",
"description": "",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nikordaris/react-jsonschema-vis.git"
},
"bugs": {
"url": "https://github.com/nikordaris/react-jsonschema-vis/issues"
},
"homepage": "https://github.com/nikordaris/react-jsonschema-vis#readme",
"author": "Nikordaris",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean; babel src --out-dir lib --ignore *.test.js",
"clean": "rimraf lib coverage",
"test": "concurrently \"flow\" \"eslint src/**/*.js\" \"jest\"",
"test:ci": "npm test && codecov && npm run build-storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"rootDir": "src",
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"collectCoverage": true
},
"devDependencies": {
"@storybook/addon-actions": "^3.1.6",
"@storybook/react": "^3.1.6",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^2.2.0",
"concurrently": "^3.4.0",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.2.0",
"eslint-config-react-app": "^1.0.5",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^20.0.1",
"eslint-plugin-jsx-a11y": "5.x",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "0.52.x",
"flow-typed": "^2.1.2",
"jest": "^20.0.1",
"jest-cli": "^20.0.4",
"prettydiff": "^99.0.1",
"react": "^15.5.4",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1"
},
"dependencies": {
"evaluate-style": "^1.0.0",
"lodash": "^4.17.4"
}
}