-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
66 lines (66 loc) · 1.45 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
{
"name": "xiaofan-wechat",
"version": "1.20.0",
"description": "Fanfou WeApp",
"private": true,
"scripts": {
"test": "xo && c8 ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fanfoujs/xiaofan-wechat.git"
},
"author": "FanfouJS",
"license": "MIT",
"bugs": {
"url": "https://github.com/fanfoujs/xiaofan-wechat/issues"
},
"homepage": "https://github.com/fanfoujs/xiaofan-wechat#readme",
"devDependencies": {
"ava": "^6.2.0",
"c8": "^10.1.2",
"deep-keys": "^0.5.0",
"xo": "^0.59.3"
},
"xo": {
"prettier": true,
"globals": [
"App",
"wx",
"Page",
"getApp",
"getCurrentPages"
],
"ignores": [
"src/utils/fanfou-sdk-node/modules/**"
],
"rules": {
"unicorn/prefer-module": 0,
"unicorn/prefer-node-protocol": 0,
"unicorn/prevent-abbreviations": 0,
"import/extensions": 0,
"ava/no-ignored-test-files": 0,
"camelcase": 0,
"logical-assignment-operators": 0,
"import/no-unresolved": 0,
"promise/prefer-await-to-then": 0,
"max-params": [
"error",
6
],
"new-cap": [
"error",
{
"capIsNew": false
}
],
"prefer-rest-params": 0,
"prefer-object-spread": 0,
"prefer-named-capture-group": 0,
"unicorn/import-index": 0,
"unicorn/no-this-assignment": 0
},
"semicolon": false,
"space": 2
}
}