-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.24 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@caldera-labs/admin-client",
"version": "0.4.0",
"license": "GPL-2.0",
"public": "true",
"main": "./dist/index.js",
"dependencies": {
"@caldera-labs/api-client": "0",
"@caldera-labs/components": "^1.6.0",
"@caldera-labs/processor-ui": "^0.5.0",
"@caldera-labs/state": "^0.9",
"@wordpress/components": "^1.0.1",
"@wordpress/compose": "^1.0.2",
"@wordpress/data": "^1.0.1",
"@wordpress/element": "^1.0.2",
"classnames": "^2.2.6",
"deepmerge": "^2.1.1",
"dot-object": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"locutus": "^2.0.9",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-data-grid": "^4.0.7",
"react-oembed-container": "^0.3.0",
"react-scripts": "1.1.4",
"react-table": "^6.8.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"coveralls": "^2.13.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"istanbul-lib-coverage": "^1.2.0",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.4.1",
"redux": "^4.0.0",
"uglify-js": "^3.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run build:pre && npm run build:compile && npm run build:post",
"build:no-test": "npm run build:compile && npm run build:post",
"build:pre": "npm run test:once",
"build:compile": "./node_modules/.bin/babel -d dist src/",
"build:post": "npm run hack:for:dist ",
"hack:for:dist": "unlink dist/index.js && mv dist/module.js dist/index.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"test:once": "CI=true react-scripts test --env=jsdom",
"test:coverage": "npm test -- --coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"document": "./node_modules/.bin/esdoc",
"test:debug": "react-scripts --inspect-brk test --runInBand --env=jsdom",
"prepublish": "npm run build",
"release": "npm run release:patch",
"release:minor": "npm version minor -m \"version %s\" && npm publish",
"release:major": "npm version major -m \"version %s\" && npm publish",
"release:patch": "npm version patch -m \"version %s\" && npm publish"
},
"jest": {
"collectCoverageFrom": [
"src/components/*.js",
"src/state/*.js",
"src/screens/*.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 84,
"functions": 95,
"lines": 90
}
}
}
}