-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "gig",
"version": "3.0.0-beta.13",
"description": "Bach player for JS",
"main": "dist/gig.cjs.js",
"module": "dist/gig.esm.js",
"browser": "dist/gig.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "npm link bach-js bach-cljs && npm run build && npm link",
"prepublish": "npm run build",
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/slurmulon/gig.git"
},
"keywords": [
"song",
"track",
"jam",
"audio",
"mp3",
"bach",
"player"
],
"author": "Erik Vavro",
"license": "MIT",
"bugs": {
"url": "https://github.com/slurmulon/gig/issues"
},
"homepage": "https://github.com/slurmulon/gig#readme",
"dependencies": {
"@babel/runtime": "^7.14.0",
"bach-js": "github:slurmulon/bach-js#v3.0.0-beta.9",
"howler": "^2.2.3",
"performance-now": "^2.1.0",
"raf": "^3.4.1"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"rollup": "^2.46.0",
"rollup-plugin-node-polyfills": "^0.2.1"
}
}