mithril-vndb/package.json
Pat Cavit 8450ca5d91 Add ESLint and a generated config/ignore file
Manually changed some rules to better match @lhorie's style and reduce #
of errors from ESLint.
2016-05-19 12:37:33 -07:00

18 lines
456 B
JSON

{
"name": "mithril",
"version": "1.0.0",
"description": "A framework for building brilliant applications",
"main": "index.js",
"scripts": {
"build": "node bundler/bundler",
"cover": "istanbul cover --print both -x \"**/ospec/**\" -x \"**/test-utils/**\" ospec/bin/ospec",
"lint": "eslint .",
"test": "node ospec/bin/ospec"
},
"author": "Leo Horie",
"license": "MIT",
"devDependencies": {
"eslint": "^2.10.2",
"istanbul": "^0.4.3"
}
}