UNPKG

coffeelint

Version:
51 lines 1.42 kB
{ "name": "coffeelint", "description": "Lint your CoffeeScript", "version": "1.5.2", "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": { "coffee-script": "~1.7", "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", "lint": "cake compile && ./bin/coffeelint -f coffeelint.json src/*.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" } }