-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
137 lines (137 loc) · 4.68 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "eslint-plugin-crc",
"description": "Analyze and refactor JavaScript codebases with auto-generated Class-Responsibility-Collaboration models.",
"version": "0.2.0",
"author": {
"name": "Greg Swindle",
"email": "[email protected]",
"url": "https://github.com/gregswindle"
},
"bugs": {
"url": "https://github.com/gregswindle/eslint-plugin-crc/issues"
},
"commitplease": {
"style": "angular",
"types": [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
],
"scope": "\\S+.*"
},
"contributors": [],
"dependencies": {
"bunyan": "1.8.12",
"doctrine": "2.1.0",
"eslint": "4.19.1",
"espree": "3.5.4",
"esquery": "1.0.1",
"lodash": "4.17.10",
"requireindex": "1.2.0"
},
"devDependencies": {
"babel-register": "6.26.0",
"chai": "4.1.2",
"coveralls": "3.0.1",
"docdash": "0.4.0",
"eslint-config-xo-space": "0.18.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsdoc": "3.6.3",
"eslint-plugin-no-unsafe-innerhtml": "1.0.16",
"eslint-plugin-no-unsanitized": "3.0.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-scanjs-rules": "0.2.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "3.1.0",
"eslint-plugin-xss": "0.1.9",
"jsdoc": "3.5.5",
"markdown-magic": "0.1.21",
"markdown-magic-dependency-table": "1.3.2",
"markdown-magic-package-scripts": "1.2.1",
"mocha": "5.1.1",
"nodemon": "1.17.3",
"nsp": "3.2.1",
"nyc": "11.7.1",
"properties-parser": "0.3.1",
"semantic-release": "15.2.0",
"snyk": "1.78.0",
"standard-version": "4.3.0"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/gregswindle/eslint-plugin-crc/",
"keywords": [
"ast",
"cli",
"code-analysis",
"eslint",
"eslint-plugin",
"eslintplugin",
"javascript",
"javascript-tools",
"refactor",
"refactoring",
"refactoring-tools"
],
"license": "MIT",
"main": "lib/index.js",
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"tests/*.spec.js",
"tests/fixtures/**/*.js"
],
"reporter": [
"lcov",
"text"
],
"check-coverage": true,
"lines": 100
},
"repository": {
"type": "git",
"url": "https://github.com/gregswindle/eslint-plugin-crc.git"
},
"scripts": {
"changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s",
"coverage": "./node_modules/.bin/nyc report",
"coverage:all": "npm run coverage:codacy && npm run coverage:codecov && npm run coverage:coveralls",
"coverage:codacy": "./node_modules/.bin/nyc report && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage",
"coverage:codecov": "./node_modules/.bin/nyc report --reporter=text-lcov > ./coverage/coverage.lcov && ./node_modules/.bin/codecov `-t $CODECOV_TOKEN`",
"coverage:coveralls": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"docs": "npm run docs2html && npm run docs2md && npm run docs:markdown",
"docs2html": "./node_modules/.bin/jsdoc -c jsdoc.conf.json",
"docs2md": "jsdoc2md --template ../eslint-plugin-crc.wiki/README.hbs --files './lib/**/*.js' './lib/**/**/*.js' './lib/formatters/**/*.js' './lib/formatters/crc/*.js' > ../eslint-plugin-crc.wiki/API.md && markdown-toc -i ../eslint-plugin-crc.wiki/API.md",
"docs:markdown": "md-magic --path '{.github/*.md,**/*.md}' '**/*.md' --ignore 'node_modules' --config ./markdown.config.js",
"docs:script": "node ./markdown.config.js",
"lint": "./node_modules/.bin/eslint . --fix",
"posttest": "./node_modules/.bin/nsp check --output summary",
"postversion": "npm run changelog && node ./.ci/bump/ && git add sonar-project.properties && git commit --amend && git push && git push --tags",
"pretest": "npm run lint",
"preversion": "npm test && ./node_modules/.bin/nsp check --output summary",
"push": "git push origin develop && git checkout master && git merge develop && git push origin master && git checkout develop && git status",
"release": "standard-version",
"security": "./node_modules/.bin/nsp check --output summary",
"security:patch": "snyk wizard",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"snyk-protect": "snyk protect",
"snyk-test": "snyk test",
"sonar": "sonar-scanner -Dproject.settings=./sonar-project.properties",
"test": "nyc mocha 'tests/**/*.spec.js'",
"version": null,
"watch:test": "nodemon -w ./tests -w ./lib -e js,json -x npm test"
},
"snyk": true
}