-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.23 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
51
52
53
54
55
56
57
58
59
{
"name": "nullboard-agent-express",
"version": "0.0.5",
"description": "Local backup agent for Nullboard powered by Express.js",
"main": "./lib/agent.js",
"repository": {
"type": "git",
"url": "https://github.com/justinpchang/nullboard-agent-express"
},
"keywords": [
"nullboard",
"nullboard-agent"
],
"scripts": {
"start": "node ./bin/run_server",
"dev": "ENV=development nodemon ./bin/run_server",
"dev-token": "ENV=development ./bin/get_token"
},
"files": [
"bin",
"lib"
],
"contributors": [
{
"name": "Justin Chang",
"email": "[email protected]"
}
],
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"minimist": "^1.2.8",
"portfinder": "^1.0.32",
"uuid": "^9.0.0"
},
"engines": {
"node": "19.x",
"npm": "9.*"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"bugs": {
"url": "https://github.com/justinpchang/nullboard-agent-express/issues"
},
"license": "BSD-2-Clause",
"bin": {
"nullboard-agent": "./bin/nullboard-agent"
},
"pkg": {
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
],
"outputPath": "release"
}
}