-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"author": "Peter T Bosse II <ptb@ioutime.com> (http://ptb2.me/)",
"devDependencies": {
"@amory/eslint-config": "latest",
"@amory/prettier": "latest",
"lerna": "3.13.2"
},
"engines": {
"node": ">=8"
},
"eslintConfig": {
"extends": [
"@amory"
],
"rules": {
"better/explicit-return": "off",
"better/no-ifs": "off",
"better/no-instanceofs": "off",
"better/no-new": "off",
"fp/no-arguments": "off",
"fp/no-class": "off",
"fp/no-delete": "off",
"fp/no-events": "off",
"fp/no-get-set": "off",
"fp/no-let": "off",
"fp/no-loops": "off",
"fp/no-mutating-assign": "off",
"fp/no-mutating-methods": "off",
"fp/no-mutation": "off",
"fp/no-nil": "off",
"fp/no-proxy": "off",
"fp/no-rest-parameters": "off",
"fp/no-this": "off",
"fp/no-throw": "off",
"fp/no-unused-expression": "off",
"fp/no-valueof-field": "off",
"import/export": "off",
"import/no-amd": "off",
"import/no-commonjs": "off"
}
},
"license": "(Apache-2.0 OR MIT)",
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 78,
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"publishConfig": {
"access": "public"
},
"renovate": {
"automerge": true,
"extends": [
"config:base"
]
},
"repository": "https://github.com/ptb/amory/tree/master"
}