-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.06 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
{
"name": "vexflow",
"version": "3.0.9",
"description": "A JavaScript library for rendering music notation and guitar tablature",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/0xfe/vexflow.git"
},
"author": {
"name": "Mohit Muthanna Cheppudira",
"email": "mohit@muthanna.com",
"url": "http://muthanna.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/0xfe/vexflow/issues"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-loader": "^8.0.6",
"browserify": "^16.5.0",
"canvas": "^2.6.1",
"docco": "^0.8.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"glob": "^7.1.6",
"grunt": "^1.0.4",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-docco": "^0.5.0",
"grunt-eslint": "^22.0.0",
"grunt-git": "^1.0.14",
"grunt-release": "^0.14.0",
"grunt-webpack": "^3.1.3",
"jquery": "^3.4.1",
"jscs": "^3.0.7",
"jsdom": "^16.1.0",
"npm": "^6.13.7",
"opentype.js": "^1.1.0",
"qunit": "^2.9.3",
"raphael": "^2.3.0",
"webpack": "^4.42.1",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"start": "grunt stage",
"lint": "grunt eslint",
"qunit": "grunt test",
"generate:current": "node ./tools/generate_png_images.js ../build ./build/images/current",
"generate:blessed": "node ./tools/generate_png_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"
]
}