forked from scienceai/mesh-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.28 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
{
"name": "mesh-tree",
"version": "2.1.3",
"description": "Utility functions for traversing the Medical Subject Heading (MeSH) tree",
"main": "dist/index.js",
"scripts": {
"initdb-test": "tar -xzf test/fixtures/mesh_subset.nt.tar.gz -C test/fixtures && node ./node_modules/levelgraph-n3/import.js test/fixtures/mesh_subset.nt -o ./dbtest && rm test/fixtures/mesh_subset.nt",
"initdb": "node ./node_modules/levelgraph-n3/import.js $PATH_TO_MESH_RDF -o $PATH_TO_MESH_DB",
"initdb-quiet": "node ./node_modules/levelgraph-n3/import.js --quiet $PATH_TO_MESH_RDF -o $PATH_TO_MESH_DB",
"test": "./node_modules/.bin/mocha --reporter spec --require @babel/register",
"build": "rm -rf dist && node ./node_modules/@babel/cli/bin/babel.js src --out-dir dist",
"coverage": "rm -rf coverage && babel-node -r node_modules/isparta/bin/isparta cover --report lcovonly node_modules/mocha/bin/_mocha -- --reporter spec --require @babel/register --bail",
"publish-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"cover": "babel-node ./node_modules/isparta/bin/isparta cover --report lcovonly ./node_modules/mocha/bin/_mocha -- --reporter dot"
},
"repository": {
"type": "git",
"url": "git://github.com/scienceai/mesh-tree.git"
},
"keywords": [
"MeSH",
"NLM",
"PubMed",
"Medical",
"Subject",
"Headings",
"RDF"
],
"author": "Sebastien Ballesteros <[email protected]>",
"contributors": [
"Leon Chen <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scienceai/mesh-tree/issues"
},
"dependencies": {
"@babel/preset-env": "^7.4.2",
"@babel/runtime": "^7.4.2",
"bluebird": "^3.5.3",
"level": "^5.0.1",
"levelgraph": "^2.1.1",
"levelgraph-n3": "git+https://github.com/Romick2005/levelgraph-n3.git#master",
"lodash": "^4.17.11",
"request": "^2.88.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"isparta": "^4.1.1",
"mocha": "^6.1.3",
"multilevel": "^7.3.0"
}
}