This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
forked from VinceG/vue-web-cam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "vue-web-cam",
"version": "1.2.3",
"description": "Webcam component for Vuejs applications",
"main": "dist/index.js",
"author": {
"name": "Mohammad Shoriful Islam Ronju",
"email": "smronju@gmail.com",
"url": "https://github.com/smronju"
},
"contributors": [
{
"name": "Vincent Gabriel",
"email": "vadimg88@gmail.com",
"url": "https://github.com/vinceg"
},
{
"name": "Riccardo Giorato",
"email": "riccardoemanuele.giorato@gmail.com",
"url": "https://github.com/giorat"
}
],
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --config demo/webpack.config.js",
"demo": "cross-env NODE_ENV=production webpack --progress --hide-modules --config demo/webpack.config.js"
},
"dependencies": {
"vue": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/vinceg/vue-web-cam"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-latest": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"cross-env": "^3.0.0",
"babel-register": "^6.0.0",
"babel-runtime": "^6.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"function-bind": "^1.0.2",
"html-webpack-plugin": "^2.8.1",
"lodash": "^4.17.10",
"vue-loader": "^11.1.4",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.0.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0",
"webpack-merge": "^0.14.1"
},
"engines": {
"node": ">= 8.10.0"
}
}