-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
101 lines (101 loc) · 2.91 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "internetmarke",
"version": "0.9.2",
"description": "A node implementation to use the Internetmarke web service of Deutsche Post.",
"keywords": [
"internetmarke",
"stamp",
"voucher",
"post",
"letter",
"1c4a",
"prod-ws",
"portokasse",
"deutsche-post"
],
"main": "./index.js",
"types": "./lib/Internetmarke.d.ts",
"repository": "https://github.com/schaechinger/internetmarke.git",
"homepage": "https://internetmarke.js.org",
"author": "Manuel Schächinger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/schaechinger/internetmarke/issues"
},
"scripts": {
"clean": "rm -rf lib .nyc_output coverage *.tgz",
"build": "npm run clean && tsc -p ./tsconfig.json",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"check:license": "license-checker --production --summary",
"test": "mocha -r ts-node/register 'test/**/*.spec.ts'",
"test:dot": "npm run test -- -R dot",
"test:codecov": "nyc --reporter=cobertura npm run test",
"test:coverage": "nyc npm run test:dot"
},
"engines": {
"node": ">=14.20.0 <15.0.0 || >=16.0.0"
},
"directories": {
"lib": "./lib/",
"test": "./test",
"example": "./examples"
},
"dependencies": {
"axios": "^1.1.2",
"axios-cookiejar-support": "^4.0.3",
"debug": "^4.3.2",
"find-cache-dir": "^3.3.2",
"inversify": "^5.1.1",
"md5": "^2.3.0",
"moment-timezone": "0.5.37",
"reflect-metadata": "^0.1.13",
"soap": "^0.42.0",
"tough-cookie": "^4.1.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/debug": "^4.1.7",
"@types/find-cache-dir": "^3.2.1",
"@types/inversify": "^2.0.33",
"@types/md5": "^2.3.1",
"@types/mocha": "^9.0.0",
"@types/moxios": "^0.4.12",
"@types/node": "^16.7.13",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^10.0.2",
"@types/tough-cookie": "^4.0.2",
"@types/yauzl": "^2.9.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "^7.0.2",
"license-checker": "^25.0.1",
"mocha": "^9.1.1",
"moxios": "^0.4.0",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"nyc": {
"branches": 80,
"lines": 80,
"functions": 80,
"statements": 80
}
}