-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "@veed-io/kong-sdk",
"version": "0.0.8",
"description": "The open source Kong SDK built by VEED",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "prettier --check **/*.ts",
"build": "tsc",
"prepublishOnly": "npm run test && npm run build",
"test": "echo 'No tests yet'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veedstudio/kong-sdk.git"
},
"keywords": [
"VEED",
"Kong",
"SDK",
"Admin",
"API",
"Micro-services"
],
"author": "Jacobus Meulen <sjaak@veed.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/veedstudio/kong-sdk/issues"
},
"homepage": "https://github.com/veedstudio/kong-sdk#readme",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"jest": "^26.6.3",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^2.3.0",
"ts-jest": "^26.5.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}