-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "conch",
"version": "0.0.1",
"description" : "shell in the browser",
"homepage" : "https://c0nch.com",
"repository" : { "type" : "git", "url" : "https://github.com/limadelic/conch.git" },
"keywords" : ["shell", "devops"],
"author" : "limadelic <[email protected]>",
"contributors" : [
"Isel Fernandez <[email protected]>",
"Mike Suarez <[email protected]>"
],
"licenses" : ["MIT"],
"dependencies": {
"coffee-script": "latest",
"underscore": "latest",
"jade": "latest",
"connect-assets": "latest",
"requirejs": "latest",
"backbone": "latest",
"jquery": "latest",
"express": "latest"
},
"devDependencies": {
"mocha": "latest",
"nodemon": "latest",
"ws": "latest",
"should": "latest"
},
"engines": {
"node": ">=0.6",
"npm": ">=1.1"
},
"scripts": {
"pretest": "start ruby client/lib/client.rb",
"test": "mocha",
"coffee": "coffee -cl -o app/lib app/src",
"auto-test": "nodemon -w src -w test node_modules/mocha/bin/mocha",
"start": "nodemon -w src node_modules/coffee-script/bin/coffee app/app.coffee"
}
}