-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
94 lines (94 loc) · 3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "escher",
"author": "Zachary King",
"version": "1.7.3",
"post_version": null,
"schema_version": "1-0-0",
"map_model_version": "6",
"description": "Escher: A Web Application for Building, Sharing, and Embedding Data-Rich Visualizations of Metabolic Pathways",
"keywords": [
"visualization",
"pathway map",
"metabolism",
"genome-scale-model",
"web application",
"D3.js",
"biojs"
],
"license": "MIT",
"homepage": "https://escher.github.io",
"repository": "https://github.com/zakandrewking/escher",
"bugs": "https://github.com/zakandrewking/escher/issues",
"files": [
"dist/*",
"jupyter/*"
],
"main": "dist/escher.js",
"engines": {
"node": ">=5.0"
},
"devDependencies": {
"@jupyter-widgets/base": "^1.1.10",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.2.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.0",
"css-loader": "^3.0.0",
"file-loader": "^4.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "^15.1.1",
"mocha": "^6.1.3",
"mochapack": "^1.1.1",
"null-loader": "^3.0.0",
"nyc": "^14.1.1",
"raw-loader": "^3.0.0",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^2.0.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"baconjs": "^0.7.71",
"d3-brush": "https://github.com/zakandrewking/d3-brush.git",
"d3-drag": "^1.0.2",
"d3-dsv": "^1.0.3",
"d3-request": "^1.0.3",
"d3-scale": "^1.0.4",
"d3-selection": "^1.0.3",
"d3-zoom": "^1.7.3",
"file-saver": "^1.3.3",
"immutability-helper": "^2.4.0",
"mousetrap": "^1.5.3",
"preact": "^8.2.1",
"underscore": "^1.8.3",
"vkbeautify": "^0.99.1"
},
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.prod.js",
"watch": "./node_modules/.bin/webpack --config webpack.prod.js --watch",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.dev.js",
"clean": "rm -r dist/*; rm -r py/escher/static/*",
"test": "./node_modules/.bin/mochapack --webpack-config webpack.test.js \"src/tests/*.js\"",
"copy": "cp dist/escher.min.js dist/index.js && cp package.json py/escher/static/ && cp jupyter/notebook-extension.js py/escher/static/extension.js && cp dist/escher.min.* py/escher/static/ && mkdir -p py/escher/static/jsonschema; cp jsonschema/* py/escher/static/jsonschema/",
"coverage": "./node_modules/.bin/cross-env NODE_ENV=coverage ./node_modules/.bin/nyc --reporter=text-lcov npm run test | ./node_modules/.bin/coveralls"
},
"nyc": {
"include": [
"src/*.js"
],
"instrument": false,
"sourceMap": false
},
"jupyterlab": {
"extension": "jupyter/lab-extension"
}
}