-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1010 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1010 Bytes
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
{
"name": "cartridgepm_cli",
"version": "0.0.2-alpha",
"description": "Cartridge Package Manager, is a PM that uses Docker as its main engine, to ensure isolation of the running program from the host OS and the ability to carbon copy your programs from one OS to another.",
"main": "index.js",
"scripts": {
"build_linux_x64": "pkg index.js --output ./bin/cpm_linux_x64 --targets node8-linux-x64 --debug",
"build_linux_x86": "pkg index.js --output ./bin/cpm_linux_x86 --targets node8-linux-x86 --debug",
"build_macos_x64": "pkg index.js --output ./bin/cpm_macos_x64 --targets node8-macos-x64 --debug"
},
"keywords": [
"cli",
"docker"
],
"author": "M.Mahrous <m.mahrous.94@gmail.com>",
"license": "ISC",
"dependencies": {
"bluebird": "3.5.1",
"commander": "2.15.0",
"dockerode": "2.5.3",
"fs-extra": "5.0.0",
"js-yaml": "3.10.0",
"ora": "2.0.0",
"request": "2.83.0"
},
"devDependencies": {
"mocha": "4.1.0",
"pkg": "4.3.0"
}
}