-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.69 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
{
"name": "sapim",
"version": "0.0.7",
"description": "SAP API Manager Tools",
"main": "dst/index.js",
"files": [
"dst/",
"manifest.schema.json",
"LICENSE"
],
"scripts": {
"start": "node dst/index.js",
"debug": "node src/index.js",
"build": "npm-run-all babel bin",
"babel": "babel src --out-dir dst",
"bin": "pkg ./dst/cli.js --out-path ./bin/ --targets node8-linux-x64,node8-macos-x64,node8-win-x64",
"docs": "jsdoc -c .jsdoc.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/serban-petrescu/sapim.git"
},
"bugs": {
"url": "https://github.com/serban-petrescu/sapim/issues"
},
"bin": {
"sapim": "./dst/cli.js"
},
"keywords": [
"sap",
"api",
"manager",
"cli"
],
"author": "Serban Petrescu",
"license": "Apache-2.0",
"dependencies": {
"archiver": "^2.1.1",
"base64-stream": "^0.1.3",
"caw": "^2.0.1",
"commander": "^2.13.0",
"dotenv": "^5.0.1",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"glob-promise": "^3.3.0",
"js-yaml": "^3.10.0",
"memorystream": "^0.3.1",
"prompt": "^1.0.0",
"recursive-copy": "^2.0.8",
"replace": "^0.3.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"stream-to-promise": "^2.2.0",
"tmp-promise": "^1.0.4",
"unzip-stream": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"npm-run-all": "^4.1.2",
"pkg": "^4.3.0"
},
"babel": {
"presets": [
"es2015"
],
"sourceMaps": true,
"retainLines": true
}
}