This repository has been archived by the owner on Jan 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
69 lines (69 loc) · 1.53 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
{
"name": "redux-dynostore",
"description": "Enhance Redux stores to allow additional functionality to be dynamically added at runtime",
"author": "Michael Peyper",
"contributors": [
"Jonathan Peyper"
],
"repository": {
"type": "git",
"url": "https://github.com/ioof-holdings/redux-dynostore.git"
},
"devDependencies": {
"all-contributors-cli": "6.19.0",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"eslint": "7.18.0",
"eslint-plugin-react": "7.22.0",
"istanbul": "0.4.5",
"lerna": "3.22.1",
"rimraf": "3.0.2"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "npm run bootstrap",
"build": "lerna run --parallel build",
"test": "lerna run test && istanbul report --root packages --reporter text-summary",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"eslintConfig": {
"env": {
"browser": true,
"jest": true,
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6
},
"plugins": [
"react"
],
"rules": {
"no-console": [
"warn",
{
"allow": [
"assert",
"warn"
]
}
],
"jsx-quotes": [
"error",
"prefer-double"
]
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}