-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
50 lines (50 loc) · 1.43 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
45
46
47
48
49
50
{
"name": "eslint-plugin-filenames",
"version": "1.3.2",
"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"
},
"dependencies": {
"lodash.camelcase": "4.3.0",
"lodash.kebabcase": "4.1.1",
"lodash.snakecase": "4.1.1",
"lodash.upperfirst": "4.3.1"
},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.13.0",
"eslint": "^2.0.0",
"eslint-plugin-filenames": "^1.0.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"sinon": "2.1.0"
},
"peerDependencies": {
"eslint": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/selaux/eslint-plugin-filenames.git"
},
"author": "Stefan Lau <[email protected]>",
"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"
]
}