-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·28 lines (28 loc) · 1.03 KB
/
package.json
File metadata and controls
executable file
·28 lines (28 loc) · 1.03 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
{
"name": "autoremoteserver",
"description": "A cross-plattform AutoRemote-Server based on node.js (AutoNode)",
"version": "0.2.3",
"private": false,
"author": "Kai Wegner",
"repository": {
"type": "git",
"url": "https://github.com/kai-wegner/AutoNode.git"
},
"engines": {
"node": "0.10.x",
"npm": "1.3.x"
},
"config" : { "port" : "1337" },
"scripts": {
"postinstall": "cd .. && mv autoremoteserver .. && mv ../autoremoteserver/node_modules/* . && rm -rf ../autoremoteserver/node_modules && mv ../autoremoteserver/* .. && mkdir ../logs && cd .. && rm -rf autoremoteserver && npm start",
"start": "node_modules/forever/bin/forever start --silent -p . -m 1 -a -l logs/AutoNode.log -o logs/AutoNode.log -e logs/AutoNode.log --pidFile AutoNode.pid --uid 'AutoNode' --minUptime 1000 --spinSleepTime 1000 server.js",
"stop": "node_modules/forever/bin/forever stop AutoNode"
},
"dependencies": {
"total.js": "~1.2.x",
"autoremote.js": "~0.6.x",
"forever": "~0.11.x"
},
"devDependencies": {
}
}