forked from mattdiamond/Recorderjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "wrecorder",
"version": "1.0.0",
"description": "A fork of mattdiamonds recorderjs. I made some customizations and fixed a few bugs.",
"main": "build/bundle.js",
"scripts": {
"start:dev": "webpack-dev-server",
"start:prod": "webpack"
},
"keywords": [],
"author": "Maximilian Torggler",
"license": "ISC",
"devDependencies": {
"babel-core": "*",
"babel-loader": "*",
"babel-plugin-transform-async-to-generator": "*",
"babel-plugin-transform-async-to-module-method": "*",
"babel-plugin-transform-class-properties": "*",
"babel-plugin-transform-decorators-legacy": "*",
"babel-plugin-transform-object-rest-spread": "*",
"babel-plugin-transform-runtime": "*",
"babel-polyfill": "*",
"babel-preset-es2015": "*",
"npm-install-webpack-plugin": "*",
"webpack": "*",
"webpack-dev-server": "*",
"webpack-merge": "*",
"worker-loader": "*",
"file-loader": "*"
},
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"inline-worker": "^1.1.0"
}
}