-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.4 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
{
"name": "bbop-widget-set",
"version": "0.0.16",
"license": "BSD-3-Clause",
"description": "The set package for commpnly used BBOP widgets. This replaces the widgets from the old monolithic bundle.",
"keywords": [
"npm",
"client",
"server",
"Gene Ontology",
"GO",
"bbop",
"Berkeley BOP",
"table",
"autocomplete",
"GOlr",
"widgets"
],
"author": "SJC <sjcarbon@lbl.gov> (http://berkeleybop.org/)",
"homepage": "http://berkeleybop.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/berkeleybop/bbbop-widget-set.git"
},
"engines": {
"node": ">= 0.12.2",
"npm": ">= 2.7.4"
},
"dependencies": {
"bbop-core": "0.0.5",
"bbop-response-golr": "0.0.5",
"jquery": "1.9.1",
"mustache": "2.2.1",
"underscore": "1.8.3"
},
"devDependencies": {
"browserify-shim": "^3.8.6",
"browserify": "^10.1.3",
"chai": "^2.3.0",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-bump": "^0.3.0",
"gulp-git": "^1.2.3",
"gulp-jsdoc": "^0.1.4",
"gulp-mocha": "^2.0.1",
"gulp-pandoc": "^0.2.1",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.4.2",
"gulp-uglify": "^1.2.0",
"vinyl-source-stream": "1.1.0",
"jsdoc": "^3.3.0",
"jsdoc-baseline": "git://github.com/hegemonic/jsdoc-baseline.git#74d1dc8075"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./node_modules/jquery/jquery.js",
"jquery-ui": "./lib/jquery-ui-1.10.3.custom.min.js"
},
"browserify-shim": {
"jquery": {
"exports": "global:jQuery"
},
"jquery-ui": {
"depends": [
"jquery"
]
}
},
"bundleDependencies": [],
"private": false,
"directories": {
"doc": "doc",
"lib": "lib",
"tests": "tests"
},
"main": "./lib/set.js",
"bugs": {
"url": "https://github.com/berkeleybop/bbop-widget-set/issues"
},
"scripts": {
"update-docs": "git checkout gh-pages && git pull && git merge master && gulp doc && git commit -a -m 'bump docs' && git push && git checkout master",
"test": "./node_modules/.bin/gulp test"
}
}