forked from zakandrewking/escher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.08 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
{
"name": "escher-vis",
"author": "Zachary King",
"version": "1.5.0",
"schema_version": "1-0-0",
"map_model_version": "5",
"description": "Escher: A Web Application for Building, Sharing, and Embedding Data-Rich Visualizations of Biological Pathways",
"keywords": [
"visualization",
"pathway map",
"metabolism",
"genome-scale-model",
"web application",
"D3.js",
"biojs"
],
"license": "MIT",
"homepage": "https://escher.github.io",
"repository": "github:zakandrewking/escher",
"bugs": "https://github.com/zakandrewking/escher/issues",
"files": [
"js/src/*.js",
"js/dist/*",
"css/dist/*"
],
"main": "js/src/main.js",
"engines": {
"node": ">=5.0"
},
"devDependencies": {
"biojs-sniper": "^0.2.9",
"bootstrap": "^3.3.6",
"bootswatch": "^3.3.6",
"chai": "^3.3.0",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-uglify": "^0.9.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-coveralls": "^1.0.0",
"grunt-env": "^0.4.4",
"grunt-extract-sourcemap": "^0.1.16",
"grunt-git": "^0.3.7",
"grunt-istanbul": "^0.6.1",
"grunt-mocha-test": "^0.12.7",
"grunt-release": "^0.13.0",
"grunt-shell": "^1.1.2",
"jquery": "^2.2.0",
"jsdom": "^7.2.2",
"mocha": "^2.3.4"
},
"dependencies": {
"baconjs": "^0.7.71",
"d3": "^3.5.14",
"filesaverjs": "^0.2.1",
"mousetrap": "^1.5.3",
"underscore": "^1.8.3",
"vkbeautify": "^0.99.1"
},
"scripts": {
"compile": "./node_modules/.bin/grunt default",
"test": "./node_modules/.bin/grunt test",
"test-debug": "node debug ./node_modules/.bin/grunt test",
"coverage": "./node_modules/.bin/grunt coverage"
},
"sniper": {
"js": [
"/js/dist/escher.min.js",
"https://d3js.org/d3.v3.min.js"
],
"css": [
"/css/src/builder.css"
],
"snippets": [
"snippets"
],
"first": "map"
}
}