-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 964 Bytes
/
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
{
"name": "imperial-executor",
"version": "1.0.0",
"description": "HTTP server for executing commands",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"start:watch": "onchange '*.ts' -- npm start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngParty/imperial-executor.git"
},
"keywords": [
"express",
"exec"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/ngParty/imperial-executor/issues"
},
"homepage": "https://github.com/ngParty/imperial-executor#readme",
"dependencies": {
"body-parser": "1.15.2",
"express": "4.14.0",
"shelljs": "0.7.3"
},
"devDependencies": {
"@types/body-parser": "0.0.30",
"@types/express": "4.0.30",
"@types/node": "6.0.34",
"@types/shelljs": "0.3.28",
"onchange": "2.5.0",
"typescript": "2.0.0"
}
}