forked from abraham/pkg-ok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.21 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
{
"name": "@tufan-io/pkg-ok",
"version": "2.3.2",
"description": "Checks package.json main and bin paths",
"main": "index.js",
"bin": "bin.js",
"scripts": {
"test": "jest && eslint .",
"prepublishOnly": "npm test && node ./bin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/pkg-ok.git"
},
"keywords": [
"package",
"main",
"bin",
"field",
"file",
"path",
"exist",
"test",
"crlf",
"lf",
"line ending"
],
"author": "typicode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typicode/pkg-ok/issues"
},
"homepage": "https://github.com/typicode/pkg-ok#readme",
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^5.1.3",
"jest": "^26.6.3",
"mock-fs": "^4.13.0"
},
"dependencies": {
"chalk": "^4.1.0",
"meow": "^9.0.0",
"normalize-newline": "^3.0.0"
},
"engines": {
"node": ">= 6"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}