-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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": "linter-farch",
"version": "1.3.0",
"description": "Linter filenames, make sure the filenames stay the same!",
"main": "src/index.js",
"bin": {
"farch": "cli.js"
},
"scripts": {
"test": "eslint src/ && jest --coverage && codecov",
"pretty": "prettier src/*.js --write"
},
"pre-commit": ["pretty"],
"jest": {
"coverageDirectory": "./test/coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaulRosset/linter-farch.git"
},
"keywords": ["linter", "filenames", "filenames", "architecture", "lint-file"],
"author": "Paul Rosset <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaulRosset/linter-farch/issues"
},
"homepage": "https://github.com/PaulRosset/linter-farch#readme",
"dependencies": {
"chalk": "^2.4.1",
"globby": "^8.0.1",
"load-json-file": "^4.0.0",
"meow": "^5.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"codecov": "^3.0.0",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.3",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1"
}
}