-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
86 lines (86 loc) · 3.1 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
{
"name": "eslint-formatter-friendly",
"version": "5.0.0",
"description": " simple formatter/reporter for eslint that's friendly with Sublime Text and iterm2 'click to open file' functionality",
"repository": "royriojas/eslint-friendly-formatter",
"license": "MIT",
"author": {
"name": "Roy Riojas",
"url": "http://royriojas.com"
},
"main": "index.js",
"files": [
"index.js",
"process.js"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"beautify": "esbeautifier './index.js' 'test/specs/**/*.js'",
"beautify-check": "esbeautifier -k './index.js' 'test/specs/**/*.js'",
"eslint": "eslint --format './index.js' index.js test/specs/ -c './configs/eslint.json'",
"lint-fix": "npm run beautify && npm run eslint -- --fix",
"lint": "npm run beautify-check && npm run eslint",
"test": "npm run lint && FORCE_ITERM_HINT=true mocha-runner 'test/specs/**/*.js'",
"test:update": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
"cover": "istanbul cover -x 'test/specs/**/*.js' mocha-runner 'test/specs/**/*.js' html text-summary",
"watch": "npm run cover && watch-spawn -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary",
"check": "npm run beautify-check && npm run eslint",
"verify": "npm run check && npm test",
"changelog": "changelogx -f markdown -o ./changelog.md",
"do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
"install-hooks": "prepush install && changelogx install-hook && precommit install",
"pre-v": "npm run verify",
"post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
"bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
"bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
"bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v"
},
"keywords": [
"eslint",
"formatter",
"reporter",
"eslint formatter",
"stylish"
],
"prepush": [
"npm run verify"
],
"precommit": [
"npm run verify"
],
"devDependencies": {
"chai-jest-snapshot": "2.0.0",
"changelogx": "^1.0.18",
"esbeautifier": "10.1.1",
"eslint": "^2.10.2",
"glob-expand": "0.2.1",
"istanbul": "^0.3.17",
"mocha-runner": "^1.0.8",
"precommit": "1.2.2",
"prepush": "3.1.11",
"proxyquire": "^1.6.0",
"read-file": "^0.1.2",
"read-json-sync": "^1.1.0",
"snap-shot": "2.17.0",
"watch-spawn": "^1.0.3",
"write": "^0.2.0"
},
"dependencies": {
"babel-code-frame": "6.26.0",
"chalk": "^2.0.1",
"coalescy": "1.0.0",
"extend": "^3.0.2",
"minimist": "^1.2.0",
"strip-ansi": "^4.0.0",
"text-table": "^0.2.0"
},
"changelogx": {
"issueIDRegExp": "#(\\d+)",
"commitURL": "https://github.com/royriojas/eslint-formatter-friendly/commit/{0}",
"authorURL": "https://github.com/{0}",
"issueIDURL": "https://github.com/royriojas/eslint-formatter-friendly/issues/{0}",
"projectName": "eslint-friendly-formatter"
}
}