forked from LabShare-Archive/services-msi-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.3 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@labshare/services-msi-cli",
"description": "Generates a MSI for a Node.js API service",
"version": "1.2.1",
"author": "KalleV @KalleV",
"bin": {
"services-msi": "./bin/run"
},
"bugs": "https://github.com/LabShare/services-msi-cli/issues",
"dependencies": {
"@oclif/command": "^1.5.4",
"@oclif/config": "^1.8.8",
"@oclif/plugin-help": "^2.1.3",
"cli-ux": "^4.9.1",
"dashify": "^1.0.0",
"gulp": "^3.9.1",
"gulp-template": "^5.0.0",
"ini": "^1.3.5",
"lodash": "^4.17.11",
"read-pkg": "^4.0.1",
"temp": "^0.8.3",
"tslib": "^1.9.3",
"uuid": "^3.3.2",
"which": "^1.3.1"
},
"devDependencies": {
"@labshare/semantic-release-config": "^1.0.0",
"@oclif/dev-cli": "^1.19.3",
"@oclif/test": "^1.2.2",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.1.6",
"@types/dashify": "^1.0.0",
"@types/gulp": "^4.0.5",
"@types/gulp-template": "^5.0.0",
"@types/ini": "^1.3.29",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.0",
"@types/read-pkg": "^3.0.0",
"@types/temp": "^0.8.32",
"@types/uuid": "^3.4.4",
"@types/which": "^1.3.1",
"chai": "^4.2.0",
"globby": "^8.0.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"semantic-release": "^15.10.6",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/LabShare/services-msi-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "services-msi",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "LabShare/services-msi-cli",
"scripts": {
"prepare": "npm run version",
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"semantic-release": "semantic-release",
"oclif-dev": "oclif-dev"
},
"types": "lib/index.d.ts",
"release": {
"extends": "@labshare/semantic-release-config"
}
}