-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "multigraph",
"version": "5.1.1",
"homepage": "http://multigraph.org",
"author": "Mark Phillips",
"contributors": [
{
"name": "Mark Phillips",
"email": "mbp@geomtech.com"
},
{
"name": "John Frimmel",
"email": "jrfrimme@unca.edu"
},
{
"name": "Semmy Purewal",
"email": "semmypurewal@gmail.com"
},
{
"name": "Danielle Betke"
}
],
"repository": {
"type": "git",
"url": "https://github.com/multigraph/js-multigraph.git"
},
"bugs": {
"url": "https://github.com/multigraph/js-multigraph/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/multigraph/js-multigraph/blob/master/LICENSE"
},
"devDependencies": {
"jsdom": "^3.1.2",
"walk": "^2.3.9",
"xmldom": "^0.1.19",
"xmlhttprequest": "^1.7.0"
},
"dependencies": {
"sprintf": "^0.1.5"
},
"scripts": {
"build" : "ulimit -n 2560 ; browserify src/main.js -d > build/multigraph-nojq.js",
"build-all" : "ulimit -n 2560 ; browserify src/main.js -d > build/multigraph-nojq.js ; browserify src/main-with-jquery.js -d > build/multigraph.js ; uglifyjs < build/multigraph-nojq.js > build/multigraph-nojq-min.js ; uglifyjs < build/multigraph.js > build/multigraph-min.js",
"build-tests": "node scripts/build-tests.js",
"build-graph-tests": "node scripts/build-graph-tests.js",
"test": "jasmine-node spec"
}
}