-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 KB
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
{
"name": "@etercast/mp3",
"version": "1.0.2",
"description": "Etercast MP3 encoder",
"main": "dist/mp3.js",
"files": [
"dist"
],
"scripts": {
"serve:examples": "cp dist/mp3.* ./examples && serve ./examples",
"serve:docs": "serve ./docs/@etercast/mp3/1.0.0/",
"build:emscripten": "docker run --rm -v $(pwd):/src -e EMCC_DEBUG=1 trzeci/emscripten-upstream:1.39.3 make",
"build:js": "cp src/mp3.js dist/mp3.mjs && babel src/mp3.js -o dist/mp3.cjs",
"build:docs": "jsdoc -c .jsdoc.json",
"build:examples": "cp dist/mp3.wasm examples && cp dist/mp3.js examples",
"build": "npm run build:emscripten && npm run build:js && npm run build:docs && npm run build:examples",
"docs": "npm run build:docs && npm run serve:docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mp3",
"lame",
"encoder"
],
"repository": {
"type": "git",
"url": "https://github.com/etercast/mp3.git"
},
"bugs": {
"url": "https://github.com/etercast/jsdoc-template/issues"
},
"homepage": "https://github.com/etercast/mp3",
"author": "ROJO 2 <hola@rojo2.com> (https://rojo2.com)",
"license": "GPL-3.0",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@etercast/jsdoc-template": "^1.0.0",
"jsdoc": "^3.6.4",
"minami": "^1.2.3",
"serve": "^11.3.0"
}
}