forked from playkostudios/howler.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.44 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
{
"name": "howler",
"version": "2.2.3",
"description": "Javascript audio library for the modern web.",
"homepage": "https://howlerjs.com",
"keywords": [
"howler",
"howler.js",
"audio",
"sound",
"web audio",
"webaudio",
"browser",
"html5",
"html5 audio",
"audio sprite",
"audiosprite"
],
"author": "James Simpson <[email protected]> (http://goldfirestudios.com)",
"repository": {
"type": "git",
"url": "git://github.com/goldfire/howler.js.git"
},
"scripts": {
"build": "esbuild ./src/howler.core.js --legal-comments=eof --minify --platform=browser --outfile=\"dist/howler.core.min.js\" && esbuild ./src/plugins/howler.spatial.js --legal-comments=eof --minify --platform=browser --outfile=\"dist/howler.spatial.min.js\" && esbuild ./src/everything.js --bundle --legal-comments=eof --minify --platform=browser --outfile=\"dist/howler.min.js\" && esbuild ./src/everything.js --bundle --legal-comments=eof --platform=browser --outfile=\"dist/howler.js\"",
"release": "VERSION=`printf 'v' && node -e 'console.log(require(\"./package.json\").version)'` && git tag $VERSION && git push && git push origin $VERSION && npm publish"
},
"devDependencies": {
"esbuild": "^0.16.2"
},
"main": "dist/howler.js",
"license": "MIT",
"files": [
"src",
"dist/howler.js",
"dist/howler.min.js",
"dist/howler.core.min.js",
"dist/howler.spatial.min.js",
"LICENSE.md"
]
}