-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "image-capture",
"version": "0.4.0",
"description": "MediaStream ImageCapture polyfill: takePhoto(), grabFrame() and more",
"main": "lib/imagecapture.js",
"module": "src/imagecapture.js",
"jsnext:main": "src/imagecapture.js",
"scripts": {
"lint": "eslint src/*.js docs/index.js",
"prepare": "babel -d lib src/ && uglifyjs lib/imagecapture.js --compress --mangle --comments -o lib/imagecapture.min.js",
"dev": "webpack-dev-server --progress",
"lt": "lt --port 8080 --subdomain imagecapture",
"docs": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChrome/imagecapture-polyfill.git"
},
"keywords": [
"camera",
"webcam",
"photo",
"picture",
"image",
"capture",
"ImageCapture",
"MediaStream",
"getUserMedia"
],
"author": "Dan Dascalescu (dandv)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoogleChrome/imagecapture-polyfill/issues"
},
"homepage": "https://github.com/GoogleChrome/imagecapture-polyfill#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"localtunnel": "^1.8.3",
"uglify-js": "^3.3.5",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.10.1"
},
"babel": {
"presets": [
[
"es2015",
{
"modules": "umd"
}
]
]
}
}