-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
68 lines (68 loc) · 1.46 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
{
"name": "anylist",
"description": "📋 a wrapper for AnyList's API (unoffical, reverse engineered)",
"keywords": [
"📋",
"anylist",
"grocery",
"list",
"api",
"wrapper",
"client",
"recipe"
],
"version": "0.8.4",
"main": "lib/index.js",
"license": "MIT",
"author": "Max Isom <[email protected]> (https://maxisom.me/)",
"scripts": {
"test": "xo",
"lint-fix": "xo --fix",
"document": "documentation build lib/index.js -f html -o docs"
},
"dependencies": {
"form-data": "^3.0.0",
"got": "^10.3.0",
"protobufjs": "5.0.3",
"reconnecting-websocket": "^4.2.0",
"tough-cookie": "^3.0.1",
"uuid": "^3.4.0",
"ws": "^7.2.1"
},
"devDependencies": {
"documentation": "^12.1.4",
"husky": "^4.3.8",
"xo": "^0.56.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn run document"
}
},
"xo": {
"ignores": [
"docs"
],
"rules": {
"unicorn/prefer-module": "off",
"unicorn/prefer-string-replace-all": "off",
"unicorn/prefer-node-protocol": "off",
"import/extensions": "off",
"unicorn/prefer-event-target": "off"
}
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codetheweb/anylist.git"
},
"bugs": {
"url": "https://github.com/codetheweb/anylist/issues"
},
"homepage": "https://github.com/codetheweb/anylist",
"engines": {
"node": ">=16.0.0"
}
}