-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
{
"name": "tasker",
"version": "1.0.0",
"description": "Tasker is used to manage scheduled and one-off script execution from the server",
"main": "index.js",
"scripts": {
"start": "node ./server/index.js",
"test": "echo \"error, no test specified\"",
"lite": "lite-server --port 80 -c bs-config.json",
"dev": "concurrently --kill-others \"npm run lite\" \"npm run start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScriptPup/Tasker.git"
},
"keywords": [
"task",
"command",
"execution",
"host",
"powershell",
"script"
],
"author": "Ethan Hammond",
"license": "MIT",
"bugs": {
"url": "https://github.com/ScriptPup/Tasker/issues"
},
"homepage": "https://github.com/ScriptPup/Tasker#readme",
"dependencies": {
"child_process": "^1.0.2",
"express": "^4.15.3",
"fs": "0.0.1-security",
"http": "0.0.0",
"is_js": "^0.9.0",
"jQuery": "^1.7.4",
"moment": "^2.18.1",
"mongodb": "^2.2.27",
"password-hash": "^1.2.2",
"path": "^0.12.7",
"randomstring": "^1.1.5",
"serve-static": "^1.12.3",
"smb2": "^0.2.7",
"socket.io": "^2.0.1"
},
"devDependencies": {
"concurrently": "^3.4.0",
"lite-server": "^2.3.0"
}
}