-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "opus-to-pcm",
"version": "1.0.2",
"description": "Decode raw opus packet to pcm without using any external library",
"main": "dist/opus_to_pcm.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"pro": "NODE_ENV=production rollup -c",
"test": "karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "[email protected]:samirkumardas/opus-to-pcm.git"
},
"author": "Samir Das",
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^5.0.1",
"mocha": "^4.0.1",
"path": "^0.12.7",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.0.0"
},
"dependencies": {}
}