forked from flatironinstitute/mountainlab-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.55 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
60
61
62
63
64
65
66
67
{
"name": "mountainlab",
"version": "0.15.0",
"description": "MountainLab data analysis environment",
"engines": {
"node": ">8.0.0"
},
"main": "",
"scripts": {
"conda_build": "bash devel/conda_build.sh",
"conda_upload": "bash devel/conda_upload.sh",
"test": "test/test.sh",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/flatironinstitute/mountainlab-js"
},
"keywords": [
"mountainlab",
"mountainsort",
"kbucket"
],
"author": "Jeremy Magland",
"license": "Apache-2.0",
"dependencies": {
"async": "^2.6.1",
"axios": "^0.18.0",
"canonical-json": "latest",
"commander": "^2.16.0",
"diskdb": "^0.1.17",
"dotenv": "^6.0.0",
"expand-home-dir": "0.0.3",
"kbclient": "latest",
"lariclient": "latest",
"lockfile": "^1.0.4",
"matcher": "latest",
"mlclient": "latest",
"node-sha1": "^1.0.1",
"request": "^2.85.0",
"url-exists": "^1.0.3"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-google": "^0.9.1"
},
"directories": {
"bin": "bin"
},
"conda": {
"build_number": 0,
"build_script": [
"tgzfile=$(npm pack)",
"npm install -g $tgzfile",
"mkdir -p \"$PREFIX\"/etc/mountainlab/{packages,database}",
"touch \"$PREFIX\"/etc/mountainlab/{packages,database}/.conda_keep"
],
"test_commands": [
"ml-config",
"ml-list-processors",
"ml-spec hello.world",
"ml-spec hello.world -p",
"ml-run-process --help",
"ml-prv-locate --help"
]
}
}