forked from privatenumber/cleye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) Β· 1.46 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
{
"name": "cleye",
"version": "0.0.0-semantic-release",
"description": "The intuitive CLI development tool",
"keywords": [
"cli",
"command line",
"argv",
"parameters",
"flags",
"node",
"typescript"
],
"license": "MIT",
"repository": "privatenumber/cleye",
"funding": "https://github.com/privatenumber/cleye?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "pkgroll --minify",
"lint": "eslint .",
"pretest": "npm run build",
"test": "CI=true jest",
"test:dts": "tsd"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"dependencies": {
"terminal-columns": "^1.4.1",
"type-flag": "^2.1.0"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.19.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"colorette": "^2.0.16",
"es-jest": "^1.5.0",
"eslint": "^8.14.0",
"esno": "^0.13.0",
"husky": "^4.3.8",
"jest": "^27.4.7",
"lint-staged": "^12.1.2",
"pkgroll": "^1.0.5",
"tsd": "^0.20.0",
"typescript": "^4.6.3"
},
"eslintConfig": {
"extends": "@pvtnbr",
"rules": {
"unicorn/no-process-exit": "off"
}
},
"tsd": {
"directory": "tests"
}
}