-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 1.87 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 1.87 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "jstdin",
"description": "a better `node -p` that accepts stdin and can format and highlight output",
"license": "ISC",
"author": "Buster Collings <busterc@gmail.com> (https://about.me/buster)",
"homepage": "https://github.com/busterc/jstdin",
"repository": "busterc/jstdin",
"version": "0.11.2",
"main": "lib/index.js",
"bin": "lib/cli.js",
"files": [
"lib"
],
"scripts": {
"precommit": "lint-staged",
"prepublish": "lec lib/cli.js -c LF && nsp check",
"test": "jest --coverage"
},
"dependencies": {
"cardinal": "^2.1.1",
"get-stdin": "^6.0.0",
"meow": "^5.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-xo": "^0.24.2",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-prettier": "^2.6.2",
"execa": "^1.0.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"jest-cli": "^23.5.0",
"lec": "^1.0.1",
"lint-staged": "^7.2.2",
"nsp": "^3.2.1",
"prettier": "^1.14.2",
"prettier-package-json": "^2.0.0"
},
"keywords": [
"cli",
"eval",
"fx",
"jq",
"jq.node",
"js",
"json",
"node-p",
"npx",
"parse",
"pretty-print",
"stdin"
],
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier",
"json"
]
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
},
"reveal": true
}