-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.61 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
{
"name": "clii",
"version": "1.5.0",
"description": "Easily build a cli app",
"keywords": [
"cli",
"yargs",
"make",
"task-runner"
],
"author": "sigoden <sigoden@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/sigoden/clii",
"repository": {
"type": "git",
"url": "git+https://github.com/sigoden/clii.git"
},
"bugs": "https://github.com/sigoden/clii/issues",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"type": "module",
"files": [
"dist"
],
"bin": {
"clii": "dist/main.js"
},
"scripts": {
"lint": "eslint .",
"test": "jest --detectOpenHandles",
"clean": "rimraf dist",
"build": "tsc && cd dist && replace 'from \"(\\.[^\"]+)\"' 'from \"$1.js\"' * -r --include=\"*.js\"",
"prepublishOnly": "npm run -s clean && npm run -s build"
},
"dependencies": {
"@babel/parser": "^7.17.3",
"@babel/types": "^7.17.0",
"comment-parser": "^1.3.0",
"yargs": "^17.3.1"
},
"directories": {
"example": "examples"
},
"engines": {
"node": ">= 14.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"dist",
"node_modules"
]
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"replace": "^1.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.0-dev.20220215"
}
}