-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.22 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
{
"name": "marque",
"version": "1.0.0",
"description": "Tag Versoning helper library.",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wingify/marque.git"
},
"homepage": "https://github.com/wingify/marque#readme",
"keywords": [
"git",
"gcp",
"gcloud",
"docker image",
"tag",
"autotag",
"version",
"marque"
],
"author": "Punit Gupta",
"license": "MIT",
"bin": {
"marque": "./cli/index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"dependencies": {
"command-exists": "^1.2.9",
"inquirer": "^7.1.0"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^25.4.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5"
},
"engineStrict": true,
"engines": {
"node": ">= 7.0.0"
}
}