-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 848 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
39
40
41
42
{
"name": "cslang-cli",
"version": "1.0.13",
"description": "The CloudSlang command line interface.",
"author": "Doron Sharon",
"homepage": "http://cloudslang.io",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/dorsha/cslang-cli.git"
},
"keywords": [
"slang",
"cli",
"command-line",
"slang",
"cloudslang"
],
"bin": {
"cslang": "cslang/slang/bin/slang"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.8.0",
"npm": ">=2.1.17"
},
"preferGlobal": true,
"bugs": {
"url": "https://github.com/dorsha/cslang-cli/issues"
},
"dependencies": {
"request": "*",
"adm-zip": "*",
"wrench" : "*"
},
"scripts" : {
"postinstall" : "node index.js"
}
}