forked from 0xfe/vexflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.62 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
{
"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": "[email protected]",
"url": "http://muthanna.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/0xfe/vexflow/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"browserify": "^17.0.0",
"canvas": "^2.7.0",
"docco": "^0.8.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"glob": "^7.1.6",
"grunt": "^1.0.4",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.4.1",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^23.0.0",
"grunt-git": "^1.0.14",
"grunt-release": "^0.14.0",
"grunt-typedoc": "^0.2.4",
"grunt-webpack": "^4.0.2",
"jquery": "^3.6.0",
"jsdom": "^16.5.2",
"npm": "^7.7.5",
"opentype.js": "^1.3.3",
"prettier": "^2.2.1",
"qunit": "^2.14.1",
"raphael": "^2.3.0",
"ts-loader": "^8.1.0",
"typedoc": "^0.20.34",
"typescript": "^4.2.3",
"webpack": "^4.46.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"start": "grunt stage",
"reference": "grunt reference",
"lint": "grunt eslint",
"qunit": "grunt test",
"generate:current": "node ./tools/generate_png_images.js ../build ./build/images/current",
"generate:current:all-fonts": "node ./tools/generate_png_images.js ../build ./build/images/current --fonts=all",
"generate:reference": "node ./tools/generate_png_images.js ../reference ./build/images/reference",
"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 blessed",
"diff:reference": "./tools/visual_regression.sh reference",
"test": "npm run lint && npm run qunit && npm run generate && npm run diff",
"test:reference": "npm run lint && npm run qunit && npm run generate:current && npm run generate:reference && npm run diff:reference"
},
"homepage": "http://vexflow.com",
"keywords": [
"music",
"notation",
"guitar",
"tablature"
]
}