forked from intermine/im-tables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "im-tables",
"version": "2.1.0",
"description": "UI widgets for displaying query results in interactive tables",
"config": {
"port": "9000"
},
"scripts": {
"repl": "coffee",
"coffeelint": "coffeelint -f coffeelint.json",
"start": "grunt start",
"dev": "grunt serve",
"test": "grunt test",
"watch": "grunt watch",
"watch-tests": "grunt watchTests",
"compile": "grunt compile",
"less": "grunt run:lessc",
"build": "grunt build",
"create-style": "bin/create-style.js",
"grunt": "grunt",
"prepublish": "grunt build:dist",
"postinstall": "bin/postinstall.sh"
},
"keywords": [
"javascript",
"webservice",
"InterMine",
"Bio-Informatics"
],
"main": "build/main.js",
"bin": {
"create-imtables-style": "bin/create-style.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {},
"author": {
"name": "Alex Kalderimis",
"email": "alex@intermine.org",
"twitter": "alexkalderimis"
},
"homepage": "http://www.intermine.org",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/intermine/im-tables.git"
},
"bugs": {
"url": "git://github.com/intermine/im-tables/issues"
},
"contributors": [
{
"name": "Alex Kalderimis",
"email": "alex@intermine.org"
},
{
"name": "Laksh Singla",
"email": "lakshsingla@gmail.com"
},
{
"name": "Yo Yehudi",
"email": "yochannah@gmail.com"
}
],
"engines": {
"node": "~0.10.0"
},
"directories": {
"tests": "test"
},
"devDependencies": {
"JSONStream": "^1.3.5",
"acorn": "^6.1.1",
"brfs": "^2.0.2",
"brfs-htmlmin": "^2.0.0",
"browserify": "^16.2.3",
"browserify-shim": "~3.8.1",
"chai": "^4.2.0",
"codo": "^2.1.2",
"coffee-script": "^1.12.7",
"coffeeify": "^3.0.1",
"coffeelint": "^2.1.0",
"coffeelint-ensure-super": "0.0.2",
"coffeelint-no-long-functions": "^1.0.1",
"connect": "^3.7.0",
"envify": "^4.1.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-notify": "^0.4.1",
"grunt-run": "^0.8.1",
"grunt-sandbox-css": "^0.6.0",
"mocha": "^6.2.2",
"prefix-css-node": "~0.4.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"serve": "^11.0.0",
"should": "^13.2.3",
"uglify-js": "^3.5.15",
"watch": "^1.0.2"
},
"dependencies": {
"backbone": "^1.1.2",
"bootstrap": "^3.4.1",
"bootstrap-less": "^3.3.8",
"d3-browserify": "^3.4.12",
"es6-promise": "^4.2.6",
"font-awesome": "^4.3.0",
"imjs": "^3.18.1",
"jquery": "^3.4.1",
"jquery-ui-bundle": "^1.12.1-migrate",
"less": "^3.9.0",
"pluralize": "^8.0.0",
"popper.js": "^1.15.0",
"stringify": "^5.2.0",
"typeahead.js": "^0.11.1",
"underscore": "^1.7.0"
}
}