-
-
Notifications
You must be signed in to change notification settings - Fork 284
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "abcjs",
"version": "6.4.3",
"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-server": "npx http-server",
"test": "concurrently \"http-server\" \"npx opener http://localhost:8080/tests/all.html\"",
"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.20.12",
"@babel/preset-env": "7.20.2",
"@tarp/require": "1.4.3",
"babel-loader": "9.1.2",
"chai": "4.3.7",
"concurrently": "7.6.0",
"http-server": "14.1.1",
"mocha": "10.2.0",
"opener": "1.5.2",
"vuepress": "2.0.0-beta.60",
"vuex": "4.1.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "4.10.0"
}
}