-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
70 lines (70 loc) · 1.4 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "maid",
"version": "0.3.0",
"description": "Markdown driven task runner.",
"repository": {
"url": "egoist/maid",
"type": "git"
},
"main": "lib/index.js",
"bin": "bin/cli.js",
"files": [
"bin",
"lib"
],
"scripts": {
"maid": "node bin/cli",
"test": "yarn maid lint && yarn maid test"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"dependencies": {
"cac": "^5.0.10",
"chalk": "^2.4.1",
"cross-spawn": "^6.0.5",
"fancy-log": "^1.3.2",
"joycon": "^1.0.4",
"markdown-it": "^8.4.1",
"micromatch": "^3.1.10",
"require-from-string": "^2.0.2",
"rexrex": "^1.2.0"
},
"devDependencies": {
"ava": "^0.25.0",
"doctoc": "^1.3.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-rem": "^4.0.0",
"eslint-config-xo": "^0.22.2",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^1.0.0-rc.8",
"lint-staged": "^7.1.3",
"prettier": "^1.13.3"
},
"eslintConfig": {
"extends": [
"xo",
"rem",
"plugin:prettier/recommended"
],
"rules": {
"unicorn/filename-case": "off",
"no-await-in-loop": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn maid lint --fix",
"git add"
],
"README.md": [
"yarn maid toc",
"git add"
]
}
}