-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 2.49 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "eslint-plugin-swagger",
"version": "0.1.0",
"description": "An extensible linter with semantic validations for Swagger specifications.",
"repository": {
"type": "git",
"url": "https://github.com/gregswindle/eslint-plugin-swagger.git"
},
"bugs": "https://github.com/gregswindle/eslint-plugin-swagger/issues",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Greg Swindle",
"main": "lib/index.js",
"scripts": {
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov",
"coverage:codacy": "cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage",
"coverage:coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"eslint:html": "./node_modules/.bin/eslint --quiet -c ./.eslintrc.yml -o ./reports/eslint.html -f html --ext .json,.js,.yaml,.yml lib/**",
"eslint:stylish": "./node_modules/.bin/eslint -c ./.eslintrc.yml --ext .json,.js,.yaml,.yml lib/** --fix",
"git-issue-labels": "./node_modules/.bin/git-labelmaker",
"security": "nsp check --output summary",
"pretest": "npm run eslint:stylish",
"test": "nyc mocha $(find tests -name '*.js')",
"posttest": "nsp check --output default",
"release": "standard-version",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"eslint": "^4.1.1",
"eslint-json": "^2.0.0",
"lodash": "^4.17.4",
"pluralize": "^5.0.0",
"requireindex": "~1.1.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.0.2",
"codacy-coverage": "^2.0.2",
"commitplease": "^2.7.10",
"coveralls": "^2.13.1",
"eslint-plugin-security": "^1.4.0",
"jsdoc": "^3.4.3",
"mocha": "^3.4.2",
"npm-install-peers": "^1.1.0",
"nsp": "^2.6.3",
"nyc": "^11.0.3",
"semantic-release": "^6.3.6",
"semantic-release-cli": "^3.0.3",
"standard-version": "^4.2.0"
},
"engines": {
"node": ">=6.x"
},
"license": "Apache-2.0",
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
".scripts/**/*.js",
"tests/**/*.js",
"**/*.spec.js",
"**/fixtures/**/*.js"
],
"reporter": [
"lcov",
"text"
],
"check-coverage": true,
"lines": 100
},
"commitplease": {
"style": "angular",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
],
"scope": "\\S+.*"
}
}