-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 900 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
{
"name": "hex-service",
"version": "1.0.0",
"description": "Collect information about current host.",
"main": "index.js",
"author": {
"name": "Michał Adamiak",
"email": "[email protected]"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"run-ts": "node_modules/.bin/ts-node app.ts",
"run": "node app.js",
"run-background": "node_modules/.bin/forever start app.js",
"install": "",
"compile": "node node_modules/.bin/tsc app.ts;node node_modules/.bin/tsc src/*.ts"
},
"keywords": [],
"license": "Apache-2.0",
"dependencies": {
"colors": "^1.4.0",
"console.table": "^0.10.0",
"forever": "^1.0.0",
"symfony-style-console": "^0.4.2",
"systeminformation": "^4.16.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"devDependencies": {
"@types/node": "^12.12.21",
"mocha": "^6.2.2"
}
}