-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 1.89 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
{
"name": "transcript-viewer",
"version": "0.0.1",
"license": "BSD-3-Clause",
"description": "A simple demonstration of a transcript viewer in client JavaScript.",
"keywords": [
"application",
"bbop",
"AGR"
],
"author": "SJC <[email protected]>",
"homepage": "http://berkeleybop.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/kltm/transcript-viewer.git"
},
"engines": {
"node": ">= 0.12.2",
"npm": ">= 2.7.4"
},
"dependencies": {
"body-parser": "0.16.0",
"cors": "2.4.1",
"del": "^1.1.1",
"expand-home-dir": "0.0.2",
"express": "4.13.3",
"gulp": "^3.8.11",
"jquery": "1.9.1",
"markdown": "0.5.0",
"marked": "0.3.6",
"minimist": "0.2.0",
"mustache": "2.0.0",
"plotly.js": "1.7.0",
"pup-tent": "0.9.10",
"underscore": "1.8.3",
"underscore.string": "3.2.2"
},
"devDependencies": {
"browserify-shim": "^3.8.6",
"browserify": "^10.1.3",
"chai": "^2.3.0",
"gulp-bump": "^0.3.0",
"gulp-develop-server": "0.5.0",
"gulp-flatten": "0.1.0",
"gulp-git": "^1.2.3",
"gulp-mocha": "^2.0.1",
"gulp-shell": "0.4.3",
"gulp-uglify": "^1.2.0",
"gulp-watch": "4.3.5",
"mocha": "2.3.3",
"vinyl-source-stream": "1.1.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./node_modules/jquery/jquery.js"
},
"browserify-shim": {
"jquery": {
"exports": "global:jQuery"
},
"jquery-ui": {
"depends": [
"jquery"
]
}
},
"bundleDependencies": [],
"private": false,
"main": "",
"bugs": {
"url": "https://github.com/kltm/transcript-viewer/issues"
},
"directories": {
"doc": "doc",
"test": "tests"
},
"bin": {
"amigo": "./bin/transcript-viewer-server.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}