-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.47 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "eslint-config-djantajs",
"version": "1.1.1",
"license": "MIT",
"description": "djantajs shared eslint configuration",
"engines": {
"node": ">=7.0.0",
"npm": ">=4.6.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/djanta/eslint-config-djantajs.git"
},
"keywords": [
"djanta",
"djantajs",
"eslint",
"coding",
"style",
"eslint-rules",
"jslint",
"coding-style"
],
"author": "[email protected]",
"contributors": [
"Stanislas KOFFI ASSOUTOVI <[email protected]> (https://github.com/stanislaska)"
],
"bugs": {
"url": "https://github.com/djanta/eslint-config-djantajs/issues"
},
"homepage": "https://djantajs.io",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"es6-promise-loader": "^1.0.1",
"rimraf": "^2.5.2",
"eslint": "^4.1.1",
"mocha": "^5.0.3",
"assert": "^1.4.1",
"grunt-bump": "^0.8.0",
"grunt": "^1.0.2",
"coveralls": "^3.0.1",
"istanbul": "^0.4.5",
"codeclimate-test-reporter": "^0.5.0",
"snyk": "^1.82.1"
},
"scripts": {
"test": "npm run snyk && ./node_modules/.bin/_mocha ./test/**/**/*.spec.js --recursive --timeout 360 --expose-gc --colors",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha -- -R spec ./test/*",
"coveralls-publish": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"codeclimate-publish": "./node_modules/.bin/codeclimate-test-reporter < ./coverage/lcov.info",
"coverage-publish": "npm run coveralls-publish && npm run codeclimate-publish",
"snyk": "./node_modules/.bin/snyk test --file=./package.json",
"snyk-login": "./node_modules/.bin/snyk auth",
"snyk-monitor": "./node_modules/.bin/snyk monitor --file=./package.json",
"snyk-publish": "./node_modules/.bin/snyk wizard --file=./package.json",
"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"
}
}