-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "auto-vers",
"version": "1.0.3",
"description": "",
"main": "./dist/index.js",
"bin": {
"auto-vers": "./bin/auto-vers"
},
"scripts": {
"build": "babel ./src --out-dir ./dist",
"patch": "npm run build && ./bin/auto-vers -i",
"minor": "npm run build && ./bin/auto-vers -i minor",
"major": "npm run build && ./bin/auto-vers -i major",
"beta": "npm run build && ./bin/auto-vers -i prerelease",
"tip": "npm run build && ./bin/auto-vers -t",
"version": "npm run build && ./bin/auto-vers -t -g",
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha && ./node_modules/.bin/codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerolty/auto-version.git"
},
"keywords": [],
"author": "hua199116<qiufenghyf@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zerolty/auto-version/issues"
},
"homepage": "https://github.com/zerolty/auto-version#readme",
"dependencies": {
"colors": "^1.3.3",
"enquirer": "^2.3.0",
"package-io": "^1.0.2",
"semver": "^5.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"inquirer-test": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
}
}