-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
{
"name": "netcup-node",
"version": "0.0.13",
"description": "A node wrapper for the Netcup CCP API (https://www.netcup-wiki.de/wiki/CCP_API)",
"author": "proohit <direnc99@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/proohit/netcup-node.git"
},
"bugs": {
"url": "https://github.com/proohit/netcup-node/issues"
},
"keywords": [
"node",
"netcup",
"ccp"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "npm run build:esm && npm run build:cjs",
"postbuild": "hybrid-package-json --target-esm lib/esm --target-cjs lib/cjs",
"build:esm": "tsc -p tsconfig.esm.json && tsc-esm-fix --target=lib/esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"docs": "typedoc src/index.ts",
"docs:release": "npm run docs && git add docs && git commit -m 'chore: update docs'",
"prerelease": "npm run build && npm run docs:release",
"release": "npm login && bump --tag && npm publish",
"postrelease": "git push && git push --tags"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "lib/cjs/src/index.js",
"module": "lib/esm/src/index.js",
"types": "lib/types/src/index.d.ts",
"files": [
"lib"
],
"exports": {
"import": "./lib/esm/src/index.js",
"require": "./lib/cjs/src/index.js"
},
"dependencies": {
"axios": "^0.27.2",
"public-ip": "^5.0.0",
"tslib": "~2.1.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"hybrid-package-json": "^0.0.1",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"tsc-esm-fix": "^2.13.0",
"tsutils": "^3.21.0",
"typedoc": "^0.23.21",
"typescript": "^4.6.3",
"version-bump-prompt": "^6.1.0"
},
"engines": {
"node": ">= 12.20"
}
}