forked from Azimuth1/SARCAT-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.09 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
{
"name": "sarcat",
"version": "0.5.0",
"description": "SAR data management tool",
"author": "Azimuth1",
"engines": {
"node": "~0.10.36"
},
"repository": {
"type": "git",
"url": "git://github.com/Azimuth1/SARCAT.git"
},
"main": "./scripts/index.js",
"scripts": {
"start": "node dist/app/index.js",
"build": "node scripts/run.js",
"buildall": "scripts/buildall.sh",
"darwin": "node scripts/run.js darwin",
"win32": "node scripts/run.js win32",
"win64": "node scripts/run.js win64",
"linux": "node scripts/run.js linux",
"test": "node dist/index.js > my_app_log.log 2> my_app_err.log"
},
"bugs": {
"url": "https://github.com/Azimuth1/SARCAT/issues"
},
"keywords": [
"sar",
"search and rescue"
],
"license": "MIT",
"dependencies": {
"body-parser": "^1.13.1",
"express": "^4.13.0",
"getport": "^0.1.0",
"minimist": "^1.1.1",
"request": "^2.58.0"
},
"preferGlobal": true,
"private": true
}