-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 915 Bytes
/
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
{
"name": "@rundeck/client",
"version": "0.2.5",
"description": "Rundeck TypeScript SDK",
"main": "dist/index.js",
"browser": {
"./dist/util/node.js": "./dist/util/browser.js"
},
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "autorest autorest.md",
"build": "npm run generate && ./node_modules/.bin/tsc"
},
"author": "ProTip",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "https://github.com/rundeck/ts-rundeck"
},
"dependencies": {
"@azure/ms-rest-js": "2.0.7",
"@types/promise-queue": "^2.2.0",
"axios": "^0.21.3",
"promise-queue": "^2.2.5"
},
"devDependencies": {
"@types/node": "^14.0.13",
"autorest": "2.0.4283",
"fetch-mock": "^9.10.1",
"ts-node": "^6.0.3",
"typescript": "3.8.3"
},
"files": [
"dist/**/*",
"README.md"
]
}