-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.52 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
100
101
{
"name": "k-redux-router",
"version": "0.1.0",
"description": "Redux router - KISS",
"author": "Fabien JUIF <fabien.juif@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"core",
"components/react/*",
"examples/*"
],
"scripts": {
"lint:js": "eslint . --ext js,jsx --ignore-pattern dist/ --ignore-pattern coverage/ --ignore-pattern node_modules/ --ignore-pattern build/",
"lint": "run-p lint:*",
"test": "jest",
"coveralls": "jest --projects --coverage && cat ./coverage/lcov.info | coveralls",
"build": "lerna run --parallel --stream --ignore example-* build",
"ci": "run-p lint coveralls"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@k-ramel/react": "^2.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"jest-environment-jsdom": "^24.8.0",
"k-ramel": "^2.1.0",
"lerna": "^3.15.0",
"npm-run-all": "^4.1.5",
"path-to-regexp": "^3.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-redux": "^5.0.7",
"redux": "^4.0.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"plugins": [
"babel"
],
"globals": {
"fetch": false
},
"env": {
"browser": false
},
"rules": {
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"react/forbid-prop-types": "off",
"import/extensions": "off",
"jsx-a11y/alt-text": "off",
"jsx-a11y/anchor-is-valid": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"k-redux-router/react-redux$",
"@k-redux-router/react-k-ramel$"
]
}
],
"max-len": [
"error",
{
"code": 200
}
],
"semi": [
2,
"never"
]
}
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}