-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 888 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
{
"name": "@omniscient/rancher",
"version": "1.0.0",
"description": "Library to talk to Rancher API",
"author": "Omniscient Technology",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/omniscient/rancherjs"
},
"main": "dist/index.js",
"scripts": {
"build": "gulp build",
"lint": "cross-env ../../node_modules/.bin/tslint --project tsconfig.json",
"watch": "gulp watch",
"test": "tape ./dist/_test/**/*.js"
},
"bin": {
"rancher": "dist/rancher.js"
},
"preferGlobal": true,
"dependencies": {
"commander": "^2.11.0",
"gulp": "^3.9.1",
"gulp-typescript": "^3.2.1",
"merge2": "^1.1.0",
"node-fetch": "^1.7.1"
},
"devDependencies": {
"@types/commander": "^2.9.1",
"@types/node-fetch": "^1.6.7",
"del": "^3.0.0",
"tape": "^4.8.0",
"typescript": "^2.4.2"
}
}