-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 921 Bytes
/
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
{
"name": "git-prefix-tag",
"version": "0.1.1",
"description": "get git tags with prefix",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --fix",
"precommit": "npm run lint && npm t"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toxic-johann/git-prefix-tag.git"
},
"keywords": [
"git",
"tag",
"prefix"
],
"author": "toxic-johann",
"license": "MIT",
"bugs": {
"url": "https://github.com/toxic-johann/git-prefix-tag/issues"
},
"homepage": "https://github.com/toxic-johann/git-prefix-tag#readme",
"dependencies": {
"core-js": "^3.0.0",
"semver": "^6.0.0",
"shelljs": "^0.8.1",
"toxic-predicate-functions": "^0.2.3"
},
"devDependencies": {
"eslint": "^5.8.0",
"eslint-config-egg": "^7.1.0",
"eslint-plugin-jest": "^22.0.0",
"husky": "^3.0.0",
"jest": "^23.6.0"
}
}