-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.13 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
{
"name": "index-tasukaru",
"description": "Generate index file from CLI.",
"version": "0.0.5",
"preferGlobal": true,
"bin": {
"index-tasukaru": "bin/index-tasukaru.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "rm -rf lib/ && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darcien/index-tasukaru.git"
},
"author": {
"name": "Yosua Ian Sebastian",
"email": "[email protected]",
"url": "https://darcien.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/darcien/index-tasukaru/issues"
},
"homepage": "https://github.com/darcien/index-tasukaru#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/minimist": "^1.2.0",
"@types/node": "~10.17.28",
"typescript": "^3.9.7"
},
"dependencies": {
"fs-extra": "^9.0.1",
"minimist": "^1.2.5"
},
"engines": {
"node": ">=6"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE"
],
"keywords": [
"cli",
"utility",
"helper",
"index"
]
}