-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 990 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
34
35
36
37
{
"name": "jpl",
"version": "0.1.1",
"description": "Command line JSON parser, processor",
"main": "index.js",
"scripts": {
"format": "npx prettier --write src/**/*.js --write tests/**/*.js --write bin/**/*.js && npx eslint --fix src/ tests/ bin/",
"pretest": "npm run format",
"test": "`npm bin`/nyc `npm bin`/ava tests/",
"test:cov": "`npm bin`/nyc report --reporter=html `npm bin`/ava tests/"
},
"engines": {
"node": ">=8.0.0"
},
"bin": {
"jpl": "./bin/index.js"
},
"author": "Brandon Wood",
"repository": "https://github.com/woodb/jpl.git",
"license": "MIT",
"dependencies": {
"commander": "2.20.0"
},
"ava": {
"compileEnhancements": false
},
"devDependencies": {
"ava": "2.1.0",
"eslint": "6.0.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "5.1.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-prettier": "3.1.0",
"nyc": "14.1.1",
"prettier": "1.18.2"
}
}