forked from codetheweb/anylist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.15 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
{
"name": "anylist",
"description": "📋 a wrapper for AnyList's API (unoffical, reverse engineered)",
"keywords": [
"📋",
"anylist",
"grocery",
"list",
"api",
"wrapper",
"client"
],
"version": "0.1.0",
"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.2.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn run document"
}
},
"xo": {
"ignores": [
"docs"
]
},
"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"
}