-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
92 lines (92 loc) · 2.22 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
{
"name": "imjs",
"version": "4.0.0",
"description": "Client library for communication with InterMine web-services",
"main": "build/service",
"browser": {
"xmldom": "./build/shims/xmldom.js",
"build/service": "./dist/im.js"
},
"keywords": [
"javascript",
"webservice",
"InterMine",
"Bio-Informatics"
],
"author": {
"name": "Alex Kalderimis",
"email": "[email protected]"
},
"license": "LGPL",
"repository": {
"type": "git",
"url": "git://github.com/intermine/imjs.git"
},
"homepage": "http://www.intermine.org",
"bugs": "https://github.com/intermine/imjs/issues",
"contributors": [
{
"name": "Joshua Heimbach"
},
{
"name": "Yo Yehudi",
"url": "http://yo-yehudi.com"
}
],
"dependencies": {
"acorn": "^6.0.2",
"backbone-events-standalone": "^0.2.4",
"http-browserify": "^1.7.0",
"xmldom": "~0.1.16",
"JSONStream": "^1.3.5",
"array.prototype.find": "^2.0.4",
"browser-request": "^0.3.3",
"es6-promise": "^4.2.6",
"q": "^1.5.1",
"stream-reduce": "^1.0.3",
"event-stream": "^4.0.1",
"underscore": "^1.9.1"
},
"engines": {
"node": ">= 0.8.0"
},
"directories": {
"tests": "test"
},
"scripts": {
"test": "grunt test",
"grunt": "grunt",
"repl": "node test/repl.js",
"serve": "serve .",
"test:unit": "grunt test:unit",
"test:integration": "grunt test:integration"
},
"devDependencies": {
"codo": "^2.1.2",
"coffee-script": "^1.12.7",
"derequire": "^2.0.6",
"envify": "^4.1.0",
"esprima": "^4.0.1",
"expect": "^24.8.0",
"grunt": "^1.0.4",
"grunt-browserify": "~3.2.1",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.2",
"grunt-coffeelint": "0.0.16",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-symlink": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-env": "^1.0.1",
"grunt-jscoverage": "^0.1.3",
"grunt-mocha-test": "^0.13.3",
"insert-module-globals": "^7.2.0",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"oboe": "^2.1.5",
"serve": "^11.3.0",
"should": "^13.2.3"
}
}