-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.13 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
{
"name": "hoc-react-loader",
"version": "7.0.0",
"description": "Higher order component to call a load function from props at mount.",
"license": "MIT",
"private": true,
"author": "Fabien JUIF <[email protected]>",
"contributors": [
"Yvonnick FRIN <[email protected]>",
"Yoann Prot <[email protected]>",
"Benjamin CAVY <[email protected]>"
],
"workspaces": [
"packages/*"
],
"scripts": {
"build:core": "yarn --cwd packages/core build",
"build:full": "yarn --cwd packages/full build",
"build": "run-p build:*",
"lint": "eslint . --ext js,jsx --ignore-pattern dist/ --ignore-pattern coverage/ --ignore-pattern node_modules/ --ignore-pattern misc/ --ignore-pattern public/ --ignore-pattern build/",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"ci": "run-p lint coveralls"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"tinycolor2": "^1.4.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"plugins": [
"babel"
],
"rules": {
"max-len": [
2,
200
],
"semi": [
2,
"never"
],
"react/forbid-prop-types": "off",
"react/no-unescaped-entities": "off"
}
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/misc/",
"/build/"
],
"setupFiles": [
"./misc/testSetup.js"
]
}
}