-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.69 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.69 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "djantaio-tools-bump",
"version": "1.1.3",
"description": "djanta.io releasing tool module based on node implementation",
"homepage": "www.djanta.io",
"license": "MIT",
"author": {
"name": "Stanislas Koffi ASSOUTOVI",
"email": "team.dev@djanta.io",
"url": "www.djanta.io"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/djantaio/djantaio-tools-bump.git"
},
"bugs": {
"url": "https://github.com/djantaio/djantaio-tools-bump/issues"
},
"keywords": [
"release",
"tag",
"version",
"git",
"bump"
],
"engines": {
"node": ">=7.0.0",
"npm": ">=4.6.0"
},
"bin": {
"djanta-tag": "./release.js",
"djantaio-bump": "./release.js"
},
"main": "release.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "echo '== echo =='",
"lint": "./node_modules/.bin/eslint **/*.js",
"lint-html": "./node_modules/.bin/eslint **/*.js -f html -o ./reports/lint-results.html",
"hint": "./node_modules/.bin/jshint --verbose --config .jshintrc --reporter jslint",
"test": "npm run hint && npm run lint-html && nyc ./node_modules/.bin/mocha ./test --reporter spec --recursive --timeout 3000 --inspect --use_strict --expose-gc --colors",
"coverage": "npm run hint && npm run lint-html && nyc npm test && nyc report --reporter=text-lcov | coveralls",
"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",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint-config-xo-space": "^0.16.0",
"nyc": "^13.0.1",
"eslint": "^4.5.0",
"eslint-plugin-nodeca": "^1.0.3",
"jshint": "^2.9.5",
"mocha": "^5.0.3",
"should": "^11.2.1",
"standard": "^11.0.0",
"grunt-bump": "^0.8.0",
"grunt": "^1.0.2"
},
"dependencies": {
"chalk": "^1.1.3",
"changelog": "^1.4.1",
"dateformat": "^2.0.0",
"dateutil": "^0.1.0",
"editorconfig": "^0.15.0",
"init": "^0.1.2",
"lodash": "^4.17.4",
"read-yaml": "^1.1.0",
"semver": "^5.4.1",
"shelljs": "^0.7.8",
"verb": "^0.8.10",
"yargs": "^8.0.2",
"snyk": "^1.88.0"
},
"snyk": true
}