-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
33 lines (33 loc) · 897 Bytes
/
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
{
"author": "Matt Diebolt",
"name": "clog-analysis",
"description": "Simple CoffeeScript static analysis for code quality metrics",
"version": "2.0.0",
"main": "lib/clog.js",
"repository": {
"type": "git",
"url": "https://github.com/mdiebolt/clog.git"
},
"bin": {
"clog": "./bin/clog"
},
"scripts": {
"compile": "coffee -co lib source",
"lint": "coffeelint -q source",
"pretest": "npm run compile",
"test": "mocha && npm run lint",
"prepublish": "npm test"
},
"dependencies": {
"coffee-script": "^1.10.0",
"coffeelint": "^1.13.0",
"coffeelint-no-long-functions": "git://github.com/mdiebolt/coffeelint-no-long-functions.git",
"glob": "^5.0.15",
"minimist": "^1.2.0"
},
"devDependencies": {
"coffeelint-prefer-double-quotes": "^0.1.0",
"coffeelint-prefer-symbol-operator": "^0.1.1",
"mocha": "^2.3.3"
}
}