-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "bbop-core",
"version": "0.0.6",
"license": "BSD-3-Clause",
"description": "A set of useful and common JavaScript functions to supplement other more basic utility libraries.",
"keywords": [
"node",
"npm",
"client",
"server",
"Gene Ontology",
"GO",
"bbop",
"Berkeley BOP",
"general",
"utility",
"utilities"
],
"author": "SJC <[email protected]> (http://berkeleybop.org/)",
"homepage": "http://berkeleybop.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/berkeleybop/bbop-core.git"
},
"engines": {
"node": ">= 0.12.2",
"npm": ">= 2.7.4"
},
"dependencies": {
"underscore": "1.8.3"
},
"devDependencies": {
"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-rename": "^1.2.2",
"gulp-shell": "^0.4.2",
"gulp-uglify": "^1.2.0",
"jsdoc": "^3.3.0",
"jsdoc-baseline": "git://github.com/hegemonic/jsdoc-baseline.git#74d1dc8075"
},
"bundleDependencies": [],
"private": false,
"main": "lib/core.js",
"bugs": {
"url": "https://github.com/berkeleybop/bbop-core/issues"
},
"directories": {
"doc": "doc",
"lib": "lib",
"tests": "tests"
},
"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"
}
}