UNPKG

1.29 kBJSONView Raw
1{
2 "name": "eslint-plugin-filenames",
3 "version": "0.1.0",
4 "description": "Eslint rule for consistent filenames.",
5 "main": "index.js",
6 "scripts": {
7 "test": "npm run lint && npm run unit-test --coverage && npm run check-coverage",
8 "lint": "eslint .",
9 "unit-test": "istanbul test --dir build/coverage _mocha test -- --recursive --reporter dot",
10 "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --lines 100",
11 "report-coverage-html": "istanbul report --dir build/coverage html",
12 "coveralls": "cat ./build/coverage/lcov.info | coveralls"
13 },
14 "devDependencies": {
15 "chai": "1.10.0",
16 "eslint-tester": "0.4.0",
17 "istanbul": "0.3.5",
18 "mocha": "2.1.0",
19 "eslint": ">=0.9.0",
20 "coveralls": "2.11.2"
21 },
22 "peerDependencies": {
23 "eslint": ">=0.9.0"
24 },
25 "repository": {
26 "type": "git",
27 "url": "git://github.com/selaux/eslint-plugin-filenames.git"
28 },
29 "author": "Stefan Lau <github@stefanlau.com>",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/selaux/eslint-plugin-filenames/issues"
33 },
34 "homepage": "https://github.com/selaux/eslint-plugin-filenames",
35 "keywords": [
36 "eslint",
37 "eslintplugin",
38 "eslint-plugin",
39 "file",
40 "filename",
41 "path"
42 ]
43}