forked from clutchski/coffeelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 986 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
34
{
"name": "coffeelint",
"description": "Lint your CoffeeScript",
"version": "0.5.5",
"homepage" : "http://www.coffeelint.org",
"keywords" : ["lint", "coffeescript", "coffee-script"],
"author" : "Matthew Perpick <[email protected]>",
"main" : "./lib/coffeelint.js",
"repository" : {
"type": "git",
"url": "git://github.com/clutchski/coffeelint.git"
},
"bin" : {
"coffeelint": "./bin/coffeelint"
},
"dependencies": {
"optimist" : ">=0.2.8",
"coffee-script" : ">=1.4.0",
"glob" : ">=3.1.9"
},
"devDependencies" : {
"vows" : ">=0.6.0"
},
"licenses":[{
"type": "MIT",
"url": "http://github.com/clutchski/coffeelint/raw/master/LICENSE"
}],
"scripts": {
"pretest": "rake compile",
"test": "node_modules/.bin/vows --spec test/*.coffee",
"posttest": "./bin/coffeelint -f test/fixtures/coffeelint.json src/*.coffee test/*.coffee",
"prepublish": "rake compile"
}
}