forked from 0xfe/vexflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.11 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
{
"name": "vexflow",
"version": "1.2.83",
"description": "A JavaScript library for rendering music notation and guitar tablature",
"main": "releases/vexflow-debug.js",
"repository": {
"type": "git",
"url": "https://github.com/0xfe/vexflow.git"
},
"author": {
"name": "Mohit Muthanna Cheppudira",
"email": "[email protected]",
"url": "http://muthanna.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/0xfe/vexflow/issues"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"browserify": "^13.0.1",
"docco": "^0.7.0",
"eslint": "^3.0.1",
"eslint-config-airbnb-base": "^4.0.0",
"eslint-plugin-import": "^1.9.2",
"glob": "^7.0.5",
"grunt": "^1.0.1",
"grunt-bump": "0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-docco": "0.0.0-beta",
"grunt-contrib-qunit": "^1.2.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-git": "^1.0.0",
"grunt-release": "^0.14.0",
"grunt-webpack": "^1.0.11",
"jquery": "^3.1.0",
"jscs": "^3.0.6",
"qunit": "^0.9.1",
"raphael": "^2.1.0",
"slimerjs": "^0.906.2",
"webpack": "*",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"start": "grunt stage",
"lint": "grunt eslint",
"qunit": "grunt test",
"generate:current": "slimerjs ./tools/generate_svg_images.js ../build ./build/images/current",
"generate:blessed": "slimerjs ./tools/generate_svg_images.js ../releases ./build/images/blessed",
"generate": "npm run generate:current && npm run generate:blessed",
"diff": "./tools/visual_regression.sh",
"test": "npm run lint && npm run qunit && npm run generate && npm run diff"
},
"homepage": "http://vexflow.com",
"keywords": [
"music",
"notation",
"guitar",
"tablature"
]
}