-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.28 KB
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
{
"name": "eslint-formatter-compassion",
"version": "1.1.2",
"description": "ESLint reporting with context and guidance for humans.",
"types": "dist/index",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"prepublishOnly": "if [ ! -d \"../src\" ]; then echo \"USE npm run pub INSTEAD!\"; exit 1; fi;",
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc -p . && sed -e 's/dist\\///g' package.json >| ./dist/package.json && cp README.md ./dist && cp CHANGELOG.md ./dist",
"pub-dry-run": "npm run build && pushd ./dist && npm publish --dry-run && popd",
"pub": "npm run build && pushd ./dist && npm publish && popd",
"test": "mocha -r ts-node/register 'src/test/**/*.spec.{js,ts}'",
"test:live": "mocha --watch --watch-extensions js,ts,json -r ts-node/register 'src/test/**/*.spec.ts'",
"lint": "npx eslint . -f ./dist/index --ext js,ts"
},
"husky": {
"hooks": {
"pre-push": "npm run test && npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/betaorbust/eslint-formatter-compassion.git"
},
"keywords": [
"eslint",
"formatter",
"eslint-formatter"
],
"author": "Jacques Favreau (@betaorbust)",
"license": "MIT",
"bugs": {
"url": "https://github.com/betaorbust/eslint-formatter-compassion/issues"
},
"homepage": "https://github.com/betaorbust/eslint-formatter-compassion#readme",
"devDependencies": {
"@types/babel__code-frame": "^7.0.0",
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.7",
"@types/strip-ansi": "^3.0.0",
"@types/text-table": "^0.2.0",
"chai": "^4.2.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.2",
"mocha": "^5.2.0",
"proxyquire": "^2.1.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.3",
"typescript-eslint-parser": "^20.0.0"
},
"dependencies": {
"@babel/code-frame": "^7.0.0",
"chalk": "^2.4.1",
"strip-ansi": "^5.0.0",
"text-table": "^0.2.0"
}
}