-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 948 Bytes
/
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
{
"name": "pocket-tagger",
"description": "Auto-tag articles in your Pocket account based on a list of rules",
"version": "0.1.4",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha",
"check-coverage": "nyc check-coverage --lines 100 --branches 100 --functions=100 --statements 100",
"test-html": "nyc --reporter html mocha",
"lint": "eslint src test",
"lint-fix": "eslint --fix src test"
},
"dependencies": {
"debug": "^4.3.4",
"local-credentials": "^0.0.5",
"pocket-promise": "^1.1.0",
"url-tagger": "^0.2.0"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"sinon": "^15.0.1"
}
}