This repository has been archived by the owner on Sep 22, 2022. It is now read-only.
forked from clutchski/coffeelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "@fellow/coffeelint2",
"description": "Lint your CoffeeScript v2 code",
"version": "2.2.6",
"homepage": "http://www.coffeelint.org",
"keywords": [
"lint",
"coffeescript",
"coffee-script"
],
"author": "Matthew Perpick <[email protected]>",
"main": "./lib/coffeelint.js",
"engines": {
"npm": ">=1.3.7",
"node": ">=6.9.1"
},
"repository": {
"type": "git",
"url": "git://github.com/aminland/coffeelint2.git"
},
"bin": {
"coffeelint": "./bin/coffeelint"
},
"dependencies": {
"browserify": "^13.3.0",
"coffeeify": "^1.2.0",
"coffeescript": "^2.1.2",
"glob": "^7.0.6",
"ignore": "^3.0.9",
"optimist": "^0.6.1",
"resolve": "^0.6.3",
"strip-json-comments": "^1.0.4"
},
"devDependencies": {
"underscore": ">=1.4.4",
"vows": ">=0.8.1"
},
"license": "MIT",
"scripts": {
"pretest": "cake compile",
"test": "./vowsrunner.js --spec test/*.coffee test/*.litcoffee",
"testrule": "npm run compile && ./vowsrunner.js --spec",
"posttest": "npm run lint",
"prepublish": "cake prepublish",
"postpublish": "cake postpublish",
"publish": "cake publish",
"install": "cake install",
"lint": "cake compile && ./bin/coffeelint .",
"lint-csv": "cake compile && ./bin/coffeelint --csv .",
"lint-jslint": "cake compile && ./bin/coffeelint --jslint .",
"compile": "cake compile"
}
}