forked from sapegin/mrm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.64 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "mrm-monorepo",
"private": true,
"description": "Codemods for your project config files",
"author": {
"name": "Artem Sapegin",
"url": "https://sapegin.me"
},
"homepage": "https://github.com/sapegin/mrm",
"repository": "sapegin/mrm",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"pretest": "npm run lint",
"test": "npm run test:jest",
"posttest": "npm run typecheck && npm run format",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --cache --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --loglevel warn --write \"**/*.{js,md}\""
},
"engines": {
"node": ">=10.13"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"eslint": "^6.7.1",
"eslint-config-tamia": "^7.1.1",
"eslint-plugin-react": "^7.19.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lerna": "^6.0.1",
"lint-staged": "^9.4.3",
"memfs": "3.2.0",
"prettier": "^1.19.1",
"typescript": "^3.7.3"
},
"keywords": [
"boilerplate",
"cli",
"codemod",
"command line",
"generate",
"generator",
"ini",
"json",
"markdown",
"runner",
"scaffold",
"task",
"template",
"tool",
"yaml"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/templates/"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}