-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.69 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
{
"name": "constellation-js",
"version": "2.0.0",
"description": "Constellation is a tool for parsing a language specifying genetic parts and their relationships",
"main": "constellation.js",
"scripts": {
"test": "nyc mocha --timeout 200000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "webpack --config webpack.config.js --mode production",
"start": "node demos/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hicsail/constellation-js.git"
},
"keywords": [
"constellation",
"biology",
"gene",
"sequences",
"genetics",
"graph",
"graph",
"traversal"
],
"author": "Boston University Software & Application Innovation Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/hicsail/constellation-js/issues"
},
"homepage": "https://github.com/hicsail/constellation-js#readme",
"dependencies": {
"body-parser": "^1.19.0",
"chai-as-promised": "^7.1.1",
"child_process": "^1.0.2",
"d3-force": "^1.2.1",
"express": "^4.17.1",
"express-xml-bodyparser": "^0.3.0",
"form-data": "^2.5.0",
"imparse": "0.0.2",
"summations": "0.0.5",
"js2xmlparser": "^4.0.0",
"mocha": "^4.1.0",
"python-shell": "^1.0.8",
"reservoir": "^0.1.2",
"sboljs": "^2.2.2",
"uuidv4": "^0.5.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^12.0.2",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"browser": {
"child_process": false
}
}