-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "pushtag",
"description": "Push git tag based on package.json version",
"version": "0.1.2",
"author": "Paolo Raez @kharenzze",
"bin": {
"pushtag": "./bin/run"
},
"bugs": "https://github.com/kharenzze/pushtag/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@types/inquirer": "^7.3.1",
"execa": "^4.0.3",
"inquirer": "^7.3.3",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1",
"@oclif/tslint": "^3",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"chai": "^4",
"mocha": "^5",
"nyc": "^14",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-node": "^8",
"tslint": "^5",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/kharenzze/pushtag",
"keywords": [
"oclif"
],
"license": "GPL-3.0",
"main": "lib/index.js",
"oclif": {
"bin": "pushtag"
},
"repository": "kharenzze/pushtag",
"scripts": {
"posttest": "tslint -p test -t stylish",
"prepack": "rimraf lib && tsc -b",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"start": "./bin/run"
},
"types": "lib/index.d.ts"
}