-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 936 Bytes
/
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
{
"name": "@samelie/video-effects",
"description": "",
"homepage": "",
"author": "Sam Elie <samradelie@gmail.com>",
"version": "0.0.1",
"repository": {
"type": "git",
"url": ".git",
"web": "/"
},
"main": "index.js",
"dependencies": {
"gl-matrix": "^2.3.2",
"scheduling": "^1.0.3"
},
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^11.1.0",
"glslify": "^5.1.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"stage-1"
]
},
"glslify"
]
]
},
"keywords": [],
"bugs": {
"url": "/issues"
},
"engines": {
"node": ">=5.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "/raw/master/LICENSE"
}
]
}