-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.41 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
{
"name": "pocket-cli",
"version": "0.8.5",
"description": "Interactive terminal application for Pocket",
"bin": {
"pocket-cli": "bin/pocket-cli"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/ildella/pocket-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ildella/pocket-cli.git"
},
"bugs": {
"url": "https://github.com/ildella/pocket-cli/issues"
},
"keywords": [
"pocket",
"readitlater",
"cli",
"interactive",
"shell"
],
"author": {
"name": "Daniele Dellafiore",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"axios": "0.19.2",
"colorette": "1.2.0",
"highland": "2.13.5",
"luxon": "1.24.1",
"semver": "7.3.2"
},
"devDependencies": {
"chai": "4.2.0",
"depcheck": "0.9.2",
"dotenv": "8.2.0",
"eslint": "7.16.0",
"eslint-config-node-opinionated": "0.4.0",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-sonarjs": "0.5.0",
"jest": "26.0.1"
},
"scripts": {
"depcheck": "depcheck .",
"start": "node .",
"test": "jest",
"test:ci": "jest --config=jest.ci.js",
"lint": "eslint src/ test/ --max-warnings 71",
"snap": "snapcraft",
"snap:help": "snapcraft help nodejs",
"snap:clean": "snapcraft clean pocket-cli -s pull"
}
}