-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
72 lines (72 loc) · 1.73 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
{
"name": "pkg-ok",
"version": "3.0.0",
"description": "Checks package.json main and bin paths",
"exports": "./dist/index.js",
"bin": "./dist/bin.js",
"type": "module",
"scripts": {
"test": "npm run build && npm run jest && node ./dist/bin",
"jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format": "prettier --write .",
"build": "rm -rf dist && tsc",
"lint": "prettier --check . && eslint . --ext .ts --ext .cjs --ext .mjs",
"prepublishOnly": "npm test && node ./dist/bin",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abraham/pkg-ok.git"
},
"keywords": [
"package",
"main",
"bin",
"field",
"file",
"path",
"exist",
"test",
"crlf",
"lf",
"line ending"
],
"author": "typicode <[email protected]>",
"contributors": [
"Abraham Williams <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/abraham/pkg-ok/issues"
},
"homepage": "https://github.com/abraham/pkg-ok#readme",
"devDependencies": {
"@types/mock-fs": "^4.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.1.0",
"eslint-plugin-n": "^17.10.3",
"husky": "^9.1.6",
"jest": "^29.1.2",
"mock-fs": "^5.0.0",
"prettier": "3.3.3",
"type-fest": "^4.3.3",
"typescript": "^5.0.4"
},
"dependencies": {
"chalk": "^5.0.0",
"meow": "^11.0.0",
"normalize-newline": "^4.0.0"
},
"engines": {
"node": "^18.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}