-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 859 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
31
32
33
{
"name": "pocket-tagger-cli",
"version": "0.5.1",
"description": "",
"main": "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"
},
"author": "Michael Heap <m@michaelheap.com>",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.3",
"sinon": "^15.0.1"
},
"dependencies": {
"commander": "^10.0.0",
"pocket-tagger": "^0.1.4"
},
"bin": {
"pocket-tagger": "./bin/pocket-tagger"
}
}