-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 KB
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
{
"name": "InteractiveShell",
"version": "1.0.0",
"description": "Interactive shell, allows to use Macaulay2 or Singular in a browser",
"contributors": [
{
"name": "Franziska Hinkelmann",
"email": "[email protected]"
},
{
"name": "Lars Kastner",
"email": "[email protected]"
},
{
"name": "Mike Stillman",
"email": "[email protected]"
}
],
"dependencies": {
"cookies": "~0.5.0",
"formidable": "*",
"socket.io": "~1.2.1",
"express": "~4.10.2",
"serve-favicon": "~2.1.7",
"serve-static": "~1.7.1",
"express-winston": "~0.2.9",
"winston": "~0.8.3",
"socket.io-cookie": "0.0.1",
"socketio-file-upload": "~0.2.7"
},
"scripts": {
"start": "node lib/Macaulay2LocalServer.js",
"sudo_docker": "node lib/Macaulay2SudoDocker.js",
"test": "mocha tests/mocha.js tests/docker.js --reporter spec",
"stop": "kill `ps ax | grep Server | grep -v monitor | grep node | awk '{print $1}'`",
"forever": "forever start -l /home/webm2.logs/forever.log -o /home/webm2.logs/out.log -e /home/webm2.logs/err.log --append lib/Macaulay2Server.js"
},
"repository": {
"type": "git",
"url": "[email protected]:fhinkel/tryM2.git"
},
"devDependencies": {
"jsdom": "~1.4.1",
"mocha": "^2.1.0"
}
}