forked from paulrosen/abcjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "abcjs",
"version": "6.0.4",
"description": "Renderer for abc music notation",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"webpack": "webpack",
"build": "npm run build:basic && npm run webpack",
"build:basic": "npm run webpack -- --mode development --config-name basic",
"build:basic-min": "npm run webpack -- --mode production --config-name basic",
"build:plugin": "npm run webpack -- --mode production --config-name plugin",
"test": "mocha 'tests/**/*.js'",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"build:analyze": "npm run build:basic -- --env analyze"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulrosen/abcjs.git"
},
"keywords": [
"abc",
"music",
"notation",
"midi",
"webaudio"
],
"author": "Paul Rosen <[email protected]> (https://abcjs.net)",
"contributors": [
"Gregory Dyke",
"Jean-Yves Mengant",
"Todd Brown",
"Thomas Chandelle"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/paulrosen/abcjs/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/paulrosen"
},
"homepage": "https://abcjs.net",
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@tarp/require": "1.4.3",
"babel-loader": "8.2.2",
"chai": "4.3.4",
"mocha": "8.4.0",
"vuepress": "2.0.0-beta.26",
"vuex": "4.0.0",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.9.0"
}
}