-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.34 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
51
52
53
{
"name": "eslint-plugin-filename-rules",
"version": "1.3.1",
"description": "Enforce filename conventions for linted files",
"main": "lib/index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "ava 'test/**/*.test.js'",
"test:watch": "npm run test -- --watch",
"lint": "esw lib/ test/",
"lint:watch": "npm run lint -- --watch",
"cover": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"do-publish": "npm run lint && npm run cover && npm publish"
},
"files": [
"lib",
"LICENSE.md",
"README.md"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dolsem/eslint-plugin-filename-rules.git"
},
"keywords": [],
"author": "Denis Olsem <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dolsem/eslint-plugin-filename-rules/issues"
},
"homepage": "https://github.com/dolsem/eslint-plugin-filename-rules#readme",
"devDependencies": {
"ava": "^0.18.2",
"babel-register": "^6.24.0",
"coveralls": "^2.12.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-watch": "^7.0.0",
"nyc": "^10.1.2"
},
"dependencies": {},
"ava": {
"require": [
"babel-register"
]
}
}