-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "eslint-plugin-backbone",
"version": "2.1.1",
"description": "Eslint rules for Backbone.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit-test --coverage && npm run check-coverage",
"lint": "eslint ./",
"unit-test": "istanbul test --dir build/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --recursive --reporter dot",
"check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --lines 100",
"report-coverage-html": "istanbul report --dir build/coverage html"
},
"files": [
"lib",
"index.js"
],
"devDependencies": {
"istanbul": "~0.4.5",
"mocha": "~3.5.0",
"eslint": "^4.0.0"
},
"peerDependencies": {
"eslint": ">=2.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/ilyavolodin/eslint-plugin-backbone.git"
},
"author": "Ilya Volodin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ilyavolodin/eslint-plugin-backbone/issues"
},
"homepage": "https://github.com/ilyavolodin/eslint-plugin-backbone",
"keywords": [
"eslint-plugin",
"eslintplugin",
"backbone",
"eslint"
]
}