forked from Kagami/vmsg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "vmsg",
"version": "0.3.4",
"description": "Library for creating voice messages",
"main": "vmsg.js",
"typings": "vmsg.d.ts",
"scripts": {
"start": "parcel demo/index.html",
"prepare": "babel vmsg.js -o vmsg.es5.js",
"demo": "D=`mktemp -d` && parcel build demo/index.html --out-dir \"$D\" --public-url ./ && git checkout gh-pages && rm `git ls-files *` && mv \"$D\"/* . && rmdir \"$D\" && git add -A && git commit -m 'Update demo'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kagami/vmsg.git"
},
"keywords": [
"voice",
"voice message",
"emscripten",
"webassembly",
"lame",
"mp3"
],
"author": "Kagami Hiiragi",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Kagami/vmsg/issues"
},
"homepage": "https://github.com/Kagami/vmsg#readme",
"parcelDisableLoaders": [
"wasm"
],
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"parcel-bundler": "^1.6.2",
"parcel-plugin-disable-loaders": "^1.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}