-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "@20i/mrm-preset",
"version": "1.3.0",
"description": "mrm preset to set up eslint, prettier, lint-staged, husky, and typescript",
"repository": "https://github.com/twentyideas/mrm-preset.git",
"homepage": "https://github.com/twentyideas/mrm-preset",
"author": "Greg McKelvey <[email protected]>",
"keywords": [
"mrm",
"mrm-preset",
"20i",
"twenty ideas",
"eslint",
"prettier",
"lint-staged",
"husky",
"typescript"
],
"license": "MIT",
"main": "config.json",
"files": [
"config.json",
".lintstagedrc.js",
"*/index.js"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]",
"dependencies": {
"mrm-core": "^6.1.7",
"package-repo-url": "^1.0.4",
"semver-utils": "^1.1.4"
},
"devDependencies": {
"@20i/eslint-config": "^2.0.3",
"@types/got": "^9.6.12",
"@types/lodash": "^4.14.179",
"@types/semver-utils": "^1.1.1",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"mrm": "^3.0.10",
"pinst": "^3.0.0",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
},
"scripts": {
"lint": "yarn eslint --max-warnings=0 --cache --fix \"**/*.{js,ts,jsx,tsx}\"",
"build": "tsc",
"postinstall": "husky install",
"pretest": "tsc --noEmit",
"precommit": "npx lint-staged",
"prepack": "pinst --disable && yarn build",
"postpack": "pinst --enable"
}
}