-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "jp-cli",
"version": "2.1.0",
"description": "Parse JSON on the commandline",
"main": "index.js",
"bin": {
"jp": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/therealklanni/jp.git"
},
"scripts": {
"precommit": "lint-staged",
"lint:fix": "eslint --fix --quiet --",
"test": "cat package.json | node index.js -hd0"
},
"keywords": [
"json",
"parse",
"commandline",
"sed"
],
"author": "Kevin Lanni <[email protected]> (https://github.com/therealklanni)",
"license": "MIT",
"dependencies": {
"concat-stream": "^1.5.2",
"jsonpath": "^0.2.9",
"lodash": "^4.17.2",
"map-stream": "0.0.6",
"split": "^1.0.0",
"utf8-stream": "0.0.0",
"yargs": "^6.5.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-prettier": "^2.0.1",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"prettier": "^1.2.2"
},
"lint-staged": {
"*.js": [
"eslint --fix --quiet",
"git add"
]
}
}