-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "eslint-plugin-filenames",
"version": "1.0.0",
"description": "Eslint rule for consistent filenames.",
"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 _mocha test -- --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",
"coveralls": "cat ./build/coverage/lcov.info | coveralls"
},
"devDependencies": {
"chai": "2.1.1",
"coveralls": "2.11.2",
"eslint": ">=2.0.0",
"eslint-plugin-filenames": "^1.0.0",
"istanbul": "0.3.7",
"mocha": "2.2.1",
"sinon": "1.17.3"
},
"peerDependencies": {
"eslint": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/selaux/eslint-plugin-filenames.git"
},
"author": "Stefan Lau <github@stefanlau.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/selaux/eslint-plugin-filenames/issues"
},
"homepage": "https://github.com/selaux/eslint-plugin-filenames",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"file",
"filename",
"path"
]
}