-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "famous-cli",
"version": "0.6.1",
"description": "CLI interface for Famous Industries Web Services",
"main": "index.js",
"repository": "https://github.com/Famous/famous-cli.git",
"preferGlobal": "true",
"bin": {
"famous": "bin/famous.js"
},
"scripts": {
"test": "tap spec && npm run lint",
"lint": "eslint bin/ lib/",
"debug": "node --debug server.js"
},
"contributors": [
"Will Gester <[email protected]>",
"Lorin Beer <[email protected]>",
"Gabriel Debeaupuis <[email protected]>",
"Matthew Trost <[email protected]>"
],
"license": "MIT",
"dependencies": {
"async": "0.9.0",
"btoa": "1.1.2",
"chalk": "^1.0.0",
"combined-stream": "^1.0.3",
"commander": "2.7.1",
"fs-extra": "^0.18.3",
"inquirer": "0.8.2",
"isbinaryfile": "2.0.3",
"latest-version": "^1.0.0",
"mime": "^1.3.4",
"mime-types": "^2.0.12",
"minimist": "1.1.0",
"mixpanel": "^0.2.1",
"mustache": "^2.1.1",
"node-rest-client": "1.4.4",
"recursive-readdir": "1.2.1",
"slash": "^1.0.0",
"tar-fs": "^1.5.1",
"uuid": "^2.0.1",
"win-spawn": "^2.0.0"
},
"devDependencies": {
"eslint": "^0.21.1",
"rewire": "2.3.1",
"sinon": "1.14.1",
"tap": "1.1.4"
}
}