-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
{
"name": "ipaddress",
"version": "1.0.0",
"description": "A typescript port of the Python ipaddress module",
"keywords": [
"ip address",
"ip",
"ipv4",
"ipv6",
"ipaddress"
],
"homepage": "https://github.com/kkirsche/ipaddress/blob/main/README.md",
"bugs": {
"url": "https://github.com/kkirsche/ipaddress/issues"
},
"repository": {
"url": "https://github.com/kkirsche/ipaddress.git",
"type": "git"
},
"author": {
"name": "Kevin Kirsche",
"email": "kev.kirsche@gmail.com"
},
"scripts": {
"format": "prettier -w src",
"lint": "eslint",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
},
"packageManager": "yarn@3.6.0"
}