-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "canvas-video",
"version": "1.0.4",
"description": "draws video in canvas element using requestAnimationFrame",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Baptiste Briel",
"email": "b.briel@suspended-animations.com",
"url": "https://github.com/BaptisteBriel"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"watchify": "^3.7.0"
},
"scripts": {
"bundle": "browserify index.js -s build/canvas-video -o build/canvas-video.js",
"uglify": "uglifyjs build/canvas-video.js -cm > build/canvas-video.min.js",
"build": "npm run bundle && npm run uglify"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/BaptisteBriel/canvas-video.git"
},
"homepage": "https://github.com/BaptisteBriel/canvas-video",
"bugs": {
"url": "https://github.com/BaptisteBriel/canvas-video/issues"
},
"dependencies": {
"performance-now": "^0.2.0",
"raf": "^3.2.0"
}
}