-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "travis-npm-deploy",
"version": "2.0.1",
"description": "djanta platform customized NPM deploy shared script",
"homepage": "http://djanta.io",
"license": "MIT",
"author": {
"name": "Stanislas Koffi ASSOUTOVI",
"email": "team.dev@djanta.io",
"url": "http://djanta.io"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/djantaio/travis-npm-deploy.git"
},
"bugs": {
"url": "https://github.com/djantaio/travis-npm-deploy/issues"
},
"keywords": [
"release",
"tag",
"version",
"git",
"bump"
],
"engines": {
"node": ">=7.0.0",
"npm": ">=4.6.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"bump-dry": "./node_modules/.bin/grunt bump --dry-run",
"bump": "./node_modules/.bin/grunt bump",
"bump-patch": "./node_modules/.bin/grunt bump:patch",
"bump-minor": "./node_modules/.bin/grunt bump:minor",
"bump-major": "./node_modules/.bin/grunt bump:major",
"bump-git": "./node_modules/.bin/grunt bump:git",
"bump-prepatch": "./node_modules/.bin/grunt bump:prepatch",
"bump-prerelease": "./node_modules/.bin/grunt bump:prerelease",
"bump-preminor": "./node_modules/.bin/grunt bump:preminor",
"bump-premajor": "./node_modules/.bin/grunt bump:premajor"
},
"devDependencies": {
"eslint-config-xo-space": "^0.16.0",
"eslint": "^4.5.0",
"eslint-plugin-nodeca": "^1.0.3",
"jshint": "^2.9.5",
"grunt-bump": "^0.8.0",
"grunt": "^1.0.2"
}
}