-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "renew-ip",
"version": "1.2.3",
"description": "A module for renewing 4G/LTE IP addresses on tethered Android phones from Node JS.",
"keywords": [
"4g",
"lte",
"tethering",
"ip-renewal",
"automate"
],
"license": "MIT",
"author": "[email protected]",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"bin"
],
"bin": {
"renew-ip": "./bin/renew"
},
"scripts": {
"build": "rimraf ./lib && tsc",
"depcheck": "dependency-check ./package.json --verbose --ignore-module \"@types/*\" --nodev",
"lint": "eslint . --ext .ts --fix",
"pub": "npm run build && npm publish",
"sort": "sort-package-json",
"preinstall": "npx only-allow pnpm",
"test": "nyc --extension .ts mocha --forbid-only --comp test/**/*.test.ts",
"upgrade": "ncu -u --packageFile package.json && run-s sort && run-s update"
},
"dependencies": {
"debug": "^4.3.3",
"dotenv": "^8.6.0",
"got": "^11.8.3",
"is-online": "^9.0.1",
"tslib": "^2.3.1",
"zod": "^3.11.6"
},
"devDependencies": {
"@rushstack/eslint-config": "^2.5.1",
"@types/debug": "^4.1.7",
"@types/node": "^14.18.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "~7.32.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sort-package-json": "^1.54.0",
"typescript": "4.2.3"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"engines": {
"node": ">=14"
}
}