This repository has been archived by the owner on Oct 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.91 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
{
"name": "@labshare/services-build-cli",
"version": "1.0.3",
"description": "Build plugin for @labshare/services",
"main": "lib/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "services",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"prepare": "tsc",
"pretest": "tsc",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"build": "tsc",
"semantic-release": "semantic-release",
"version": "oclif-dev readme && git add README.md",
"pack": "oclif-dev pack"
},
"repository": {
"type": "git",
"url": "https://github.com/LabShare/services-build-cli.git"
},
"keywords": [
"Build",
"LabShare",
"Services"
],
"files": [
"/bin",
"/src",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"bin": {
"services": "./bin/run"
},
"dependencies": {
"@oclif/command": "^1.4.36",
"@oclif/config": "^1.6.33",
"@oclif/plugin-help": "^2.0.5",
"del": "^3.0.0",
"fancy-log": "^1.3.2",
"gulp": "^4.0.0",
"lodash": "^4.17.10",
"read-pkg": "^4.0.1",
"tslib": "^1.9.3"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@labshare/semantic-release-config": "^1.0.0",
"husky": "^0.14.3",
"@oclif/dev-cli": "^1.15.4",
"@oclif/test": "^1.1.0",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.5",
"semantic-release": "^15.9.3",
"ts-node": "^6.2.0",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"nyc": "^12.0.2"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/LabShare/services-build-cli/issues"
},
"homepage": "https://github.com/LabShare/services-build-cli#readme",
"release": {
"extends": "@labshare/semantic-release-config"
}
}