-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "@cloudstitch/cli",
"version": "1.2.0",
"private": false,
"license": "MIT",
"repository": "https://github.com/cloudstitch/cloudstitch-cli",
"devDependencies": {
"@types/chokidar": "^1.4.31",
"@types/inquirer": "0.0.32",
"@types/jszip": "0.0.32",
"@types/node": "^7.0.4",
"@types/q": "0.0.32",
"@types/request": "0.0.39",
"@types/websocket": "^0.0.32",
"ts-node": "^2.0.0",
"typescript": "^2.1.5"
},
"bin": {
"cloudstitch": "./bin/cloudstitch"
},
"engines": {
"node": ">=4.3.0"
},
"scripts": {
"start": "npm build; bin/cloudstitch",
"build": "cd src/; tsc"
},
"files": [
"LICENSE",
"README.md",
"release/",
"bin/"
],
"dependencies": {
"@cloudstitch/node-diff3-wrapper": "^0.2.1",
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"cli-spinner": "^0.2.5",
"docopt": "^0.6.2",
"inquirer": "^3.0.1",
"jszip": "^3.1.3",
"mime-types": "^2.1.14",
"node-websocket": "^0.1.6",
"opn": "^4.0.2",
"q": "^1.4.1",
"request": "^2.79.0",
"time-stamp": "^1.0.1",
"websocket": "^1.0.24"
}
}