-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
78 lines (78 loc) · 2.75 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
{
"name": "vextab",
"version": "3.0.6",
"author": {
"name": "Mohit Muthanna Cheppudira",
"email": "[email protected]",
"url": "http://muthanna.com"
},
"main": "dist/main.prod.js",
"description": "A VexTab Parser for VexFlow",
"repository": {
"type": "git",
"url": "https://github.com/0xfe/vextab.git"
},
"license": "LicenseRef-LICENSE",
"dependencies": {
"lodash": "^4.2.1",
"vexflow": "^3.0.8"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"coffee-loader": "^0.9.0",
"coffee-script": "^1.8.0",
"coffeelint": "^1.6.1",
"coffeescript": "^2.5.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.20.2",
"git-revision-webpack-plugin": "^3.0.6",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-bump": "0.8.0",
"grunt-cli": "^1.2.0",
"grunt-coffeelint": "0.0.16",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "^1.2.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-git": "^1.0.0",
"grunt-release": "^0.14.0",
"grunt-webpack": "^3.1.3",
"html-webpack-plugin": "^4.2.0",
"jison": "^0.4.18",
"jison-loader": "^1.0.0",
"qunit": "^0.9.3",
"style-loader": "^1.1.4",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"zepto-webpack": "^1.2.1"
},
"bugs": {
"url": "https://github.com/0xfe/vexflow/issues"
},
"scripts": {
"build": "webpack --progress --mode production --env.NODE_ENV=production --env.TAG_NAME=prod --config webpack.config.js",
"build-dev": "webpack --progress --mode development --env.NODE_ENV=development --env.TAG_NAME=dev --config webpack.config.js",
"start": "webpack-dev-server --progress --colors --mode development --port 9005 --disable-host-check --env.NODE_ENV=development --env.TAG_NAME=dev --config webpack.config.js",
"serve": "npx http-server -c 1 -p 8052",
"watch": "webpack -w --progress --mode development --env.NODE_ENV=development --env.TAG_NAME=dev --config webpack.config.js",
"clean": "rm -rf ./dist/*"
},
"homepage": "http://www.vexflow.com/vextab/",
"keywords": [
"music",
"notation",
"guitar",
"tablature"
]
}