-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
52 lines (52 loc) · 1.59 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
{
"name": "eslint-detailed-reporter",
"version": "0.9.1",
"description": "Detailed HTML reporter for ESLINT.",
"main": "index.js",
"scripts": {
"start": "pm2 start test/e2e/e2e-server.js",
"stop": "pm2 delete all",
"test": "npm run command-line && npm run grunt-test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git commit -am \"chore(CHANGELOG): Updating Changelog\"",
"command-line": "eslint fixture/green_file.js -f lib/detailed.js -o example/success-report.html",
"grunt-test": "grunt force:eslint",
"postversion": "npm run changelog && git push && git push --tags && npm publish ./"
},
"repository": {
"type": "git",
"url": "https://github.com/mportuga/eslint-detailed-reporter.git"
},
"keywords": [
"eslint",
"formatter",
"reporter",
"lint",
"html",
"validate",
"detailed",
"plato"
],
"author": "Marcelo S. Portugal <marceloquarion@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/mportuga/eslint-detailed-reporter",
"bugs": "https://github.com/mportuga/eslint-detailed-reporter/issues",
"peerDependencies": {
"eslint": ">=3.0.0 <9"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.15.0",
"eslint-plugin-angular": "^4.1.0",
"eslint-plugin-lodash": "^7.4.0",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"grunt-eslint": "^24.0.0",
"grunt-force-task": "^3.0.0",
"load-grunt-tasks": "^5.1.0",
"pm2": "^5.2.0"
}
}