-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.04 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "lbl",
"description": "Process stdin, line by line, sort of like AWK but 100% JS",
"license": "ISC",
"author": "Buster Collings <busterc@gmail.com>",
"repository": "busterc/lbl",
"version": "0.1.0",
"bin": "lib/cli.js",
"files": [
"lib"
],
"scripts": {
"precommit": "lint-staged",
"prepare": "lec lib/cli.js -c LF",
"prepublishOnly": "nsp check",
"pretest": "eslint .",
"test": "jest"
},
"dependencies": {
"chalk": "^2.4.1",
"meow": "^5.0.0",
"split": "^1.0.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.23.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-prettier": "^2.6.2",
"execa": "^0.10.0",
"husky": "^0.14.3",
"jest": "^23.4.1",
"lec": "^1.0.1",
"lint-staged": "^7.2.0",
"nsp": "^3.2.1",
"prettier": "^1.13.7",
"prettier-package-json": "^1.6.0"
},
"keywords": [
"awk",
"awkj",
"byline",
"cli",
"eachline",
"for-each-line",
"grep",
"jawk",
"line-by-line",
"line-reader",
"linebyline",
"linereader",
"nawk",
"read-line",
"readline",
"repl",
"sed",
"stdin",
"stdio"
],
"engines": {
"npm": ">= 4.0.0"
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier",
"json"
]
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/lib/__tests__/scripts/"
],
"collectCoverageFrom": [
"!__tests__",
"lib/cli.js"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}