forked from clutchski/coffeelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "coffeelint",
"description": "Lint your CoffeeScript",
"version": "1.5.6",
"homepage": "http://www.coffeelint.org",
"keywords": [
"lint",
"coffeescript",
"coffee-script"
],
"author": "Matthew Perpick <clutchski@gmail.com>",
"main": "./lib/coffeelint.js",
"engines": {
"npm": ">=1.3.7",
"node": ">=0.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/clutchski/coffeelint.git"
},
"bin": {
"coffeelint": "./bin/coffeelint"
},
"dependencies": {
"browserify": "~3.37",
"coffee-script": "~1.7",
"coffeeify": "~0.6.0",
"glob": "^4.0.0",
"optimist": "^0.6.1",
"resolve": "^0.6.3"
},
"devDependencies": {
"vows": ">=0.6.0",
"underscore": ">=1.4.4"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/clutchski/coffeelint/raw/master/LICENSE"
}
],
"scripts": {
"pretest": "cake compile",
"test": "coffee vowsrunner.coffee --spec test/*.coffee test/*.litcoffee",
"posttest": "npm run lint",
"prepublish": "cake prepublish",
"publish": "cake publish",
"install": "cake install",
"lint": "cake compile && ./bin/coffeelint -f coffeelint.json src/*.coffee src/rules/*.coffee test/*.coffee test/*.litcoffee",
"lint-csv": "cake compile && ./bin/coffeelint --csv -f coffeelint.json src/*.coffee test/*.coffee",
"lint-jslint": "cake compile && ./bin/coffeelint --jslint -f coffeelint.json src/*.coffee test/*.coffee",
"compile": "cake compile"
}
}