This repository was archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "zabbix-client",
"version": "1.2.7",
"description": "Zabbix Javascript API Client",
"main": "dist/index",
"scripts": {
"build": "rimraf dist && tsc",
"watch": "rimraf dist && tsc -w",
"prepublishOnly": "npm test && rimraf dist && tsc",
"test": "NODE_ENV=testing jest",
"test:cov": "NODE_ENV=testing jest --coverage",
"test:e2e": "NODE_ENV=testing jest --config ./test/jest-e2e.json"
},
"repository": {
"type": "git",
"url": "[email protected]:aluisiora/zabbix-typescript-client.git"
},
"keywords": [
"zabbix",
"api",
"typescript"
],
"author": "Aluisio R. Amaral",
"license": "MIT",
"dependencies": {
"axios": "*"
},
"devDependencies": {
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/jest": "^23.3.14",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jest": ">=22.0.0 <24.0.0",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
2345,
6059,
18002,
18003
]
}
}
}
}
}