-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "continuo",
"version": "0.1.7",
"description": "Select notes on a rendered MEI music score and create permalinks using the Music Addressability URL scheme.",
"main": "./lib/js/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"build-local": "gulp",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"Music notation",
"addressing",
"selection",
"highlight"
],
"author": "Raff Viglianti, University of Maryland",
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-register": "6.2.0",
"babelify": "7.2.0",
"browserify": "14.1.0",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.0",
"gulp-connect": "3.1.0",
"gulp-cssnano": "2.1.1",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "1.5.3",
"gulp-util": "3.0.7",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0"
},
"dependencies": {
"backbone": "1.3.1",
"jquery": "2.2.1",
"xmldom": "0.1.22",
"handlebars": "4.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/umd-mith/continuo"
}
}