coffeelint-use-strict
Version:
A CoffeeLint rule that enforces usage of strict mode
56 lines (55 loc) • 1.54 kB
JSON
{
"name": "coffeelint-use-strict",
"version": "1.0.0",
"description": "A CoffeeLint rule that enforces usage of strict mode",
"keywords": [
"coffee",
"coffeescript",
"coffeelint",
"rule",
"usestrict",
"use strict",
"'use strict'",
"\"use strict\"",
"coffeelintrule",
"coffeelintmodule",
"coffeelint-rule",
"coffeelint-module",
"codeconventions"
],
"repository": "janraasch/coffeelint-use-strict",
"author": {
"name": "Jan Raasch",
"email": "jan@janraasch.com",
"url": "http://janraasch.com"
},
"files": [
"index.js"
],
"scripts": {
"prepublish": "npm run-script coffee",
"coffee": "coffee -c -b -o ./ index.coffee",
"test": "coffeelint gulpfile.coffee index.coffee test -f ./coffeelint.json && istanbul test _mocha --report lcovonly -- ./test/*.coffee --require coffee-script/register --reporter spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"screenshot": "coffeelint index.coffee",
"changelog": "conventional-changelog -p angular -i changelog.md -w"
},
"devDependencies": {
"coffee-script": "^1.10.0",
"coffeelint": "^1.8.1",
"conventional-changelog": "^0.4.3",
"coveralls": "^2.11.2",
"del": "^2.0.1",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.5.0",
"gulp-util": "^3.0.3",
"istanbul": "^0.3.6",
"mocha": "^2.1.0",
"should": "^7.1.0"
},
"engines": {
"npm": ">=1.3.7",
"node": ">=0.8.0"
},
"license": "MIT"
}