-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "@mikudos/cli",
"version": "0.0.10",
"description": "Command-line Mikudos generator",
"main": "lib/",
"bin": {
"mikudos": "./bin/mikudos.js"
},
"scripts": {
"test": "mocha --opts",
"compile": "shx rm -rf lib/ && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikudos/cli.git"
},
"keywords": [
"mikudos",
"node",
"cli"
],
"author": "Mikudos contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikudos/cli/issues"
},
"files": [
"lib",
"bin"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/mikudos/cli#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"commander": "^4.0.0",
"generator-mikudos": "^1.0.20",
"semver": "^6.3.0",
"update-notifier": "^3.0.1",
"yeoman-environment": "^2.4.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.24",
"@types/semver": "^6.2.0",
"@types/update-notifier": "^2.5.0",
"@types/yeoman-environment": "^2.3.2",
"mocha": "^6.2.2",
"shx": "^0.3.2",
"typescript": "^3.5.3"
}
}