-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "coffeelint-config-suddi",
"description": "Coffeelint configuration set for rapid coffeescript development, similar to eslint configurations",
"version": "3.0.6",
"homepage": "https://www.npmjs.com/package/coffeelint-config-suddi",
"author": {
"name": "Sudharshan Ravindran",
"email": "mail@suddi.io",
"url": "https://suddi.io"
},
"repository": {
"type": "git",
"url": "https://github.com/suddi/coffeelint-config-suddi"
},
"bugs": {
"url": "https://github.com/suddi/coffeelint-config-suddi/issues"
},
"files": [
"lib"
],
"main": "lib/index.coffee",
"license": "MIT",
"keywords": [
"coffeelint",
"coffeelintrule",
"lint-rules",
"lint",
"linter"
],
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"scripts": {
"coverage": "nyc mocha",
"lint": "coffeelint .",
"security-check": "npm audit --audit-level high || true",
"test": "npm run lint && npm run security-check && npm run coverage"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.0.0",
"coffee-coverage": "^3.0.1",
"coffeelint": "^2.1.0",
"coffeescript": "^2.5.0",
"husky": "^4.2.3",
"lodash": "^4.17.15",
"mocha": "^7.1.1",
"nyc": "^15.0.0"
},
"peerDependencies": {
"coffeelint": "^2.1.0"
},
"coffeelintConfig": {
"extends": "../../../lib/index.coffee"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}