-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.6 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
{
"name": "@peter3000/testing-npm",
"description": "Testing build and release of npm package.",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"LICENSE",
"README.md",
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/peterhirn/testing-npm.git"
},
"scripts": {
"build": "tsc",
"prepack": "yarn build",
"clean": "rimraf lib && tsc --build --clean",
"lint": "eslint --max-warnings 0 \"**/*.{ts,tsx}\"",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"checkformat": "prettier --check \"**/*.{ts,tsx}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"prettier": {
"semi": false,
"trailingComma": "none",
"singleQuote": false,
"printWidth": 90,
"endOfLine": "auto"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"settings": {
"react": {
"version": "latest"
}
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/ban-ts-comment": "off"
}
},
"packageManager": "yarn@3.1.1"
}