-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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
{
"name": "create-spa-docker",
"version": "0.0.4",
"description": "Create docker for single page application",
"author": "qiuhongbingo@outlook.com",
"main": "lib/index.js",
"bin": {
"create-spa-docker": "./lib/index.js"
},
"license": "MIT",
"scripts": {
"dev": "tsc --watch",
"release": "tsc & release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/qhbhq/create-spa-docker"
},
"files": [
"lib",
"generators"
],
"keywords": [
"spa",
"nginx",
"docker"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"chalk": "^4.1.0",
"consola": "^2.15.3",
"fast-glob": "^3.2.5",
"fs-extra": "^9.1.0",
"yeoman-environment": "^2.10.3",
"yeoman-generator": "^4.13.0"
},
"devDependencies": {
"@types/yeoman-environment": "^2.10.2",
"@types/yeoman-generator": "^4.11.3",
"release-it": "^14.4.1",
"typescript": "^4.1.5"
},
"release-it": {
"git": {
"tag": false,
"commitMessage": "chore: release create-spa-docker@${version}"
}
}
}