This repository was archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.31 KB
/
package.json
File metadata and controls
40 lines (40 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
{
"name": "host",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && DEBUG=slimonitor:* node dist/index.js",
"start-windows": "npm run build && set DEBUG=slimonitor:* && node dist/index.js",
"build": "babel src -d dist",
"lint": "eslint src",
"pre-commit": "(npm run lint) || exit 1",
"hooks": "(echo '#!/bin/sh' && echo 'npm run pre-commit') > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"hooks-windows": "(echo #!/bin/sh && echo npm run pre-commit) > .git/hooks/pre-commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Slimonitor/host.git"
},
"author": "Eiren Rain, Robin Tail",
"license": "MIT",
"bugs": {
"url": "https://github.com/Slimonitor/host/issues"
},
"homepage": "https://github.com/Slimonitor/host#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@slimonitor/eslint-config": "git+https://github.com/Slimonitor/eslint-config.git",
"eslint": "^5.11.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"debug": "^4.1.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"systeminformation": "^3.52.2"
}
}