-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
76 lines (76 loc) · 1.63 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "normalmap",
"version": "0.0.0",
"description": "Interactive lighting effects using normal maps.",
"homepage": "https://github.com/jwagner/normalmap.js/",
"main": "src/normalmap.js",
"repository": "jwagner/normalmap.js",
"keywords": [
"normalmap",
"light",
"3d",
"2d",
"material",
"effects",
"webgl",
"jquery-plugin"
],
"scripts": {
"start": "gulp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jonas Wagner <[email protected]>",
"license": "MIT",
"devDependencies": {
"async-done": "^1.3.2",
"browser-sync": "^2.26.7",
"browserify": "^13.0.0",
"debounce": "^1.2.0",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-data": "^1.2.1",
"gulp-imagemin": "^2.4.0",
"gulp-jade": "^1.1.0",
"gulp-newer": "^1.1.0",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^1.12.1",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"gulp-zip": "^3.2.0",
"imagemin-optipng": "^4.3.0",
"imagemin-pngquant": "^4.2.2",
"jquery": "^3.4.1",
"rsyncwrapper": "^1.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-fs": "^2.4.2",
"vinyl-source-stream": "^1.1.0",
"webdriverio": "^4.14.4",
"yazl": "^2.5.1"
},
"browserify": {
"transform": [
[
"stringify",
{
"appliesTo": {
"includeExtensions": [
".glsl",
".frag",
".vert"
]
}
}
],
"bulkify"
]
},
"files": [
"src",
"doc"
],
"dependencies": {
"bulkify": "^1.1.1",
"stringify": "^5.0.0",
"vinyl": "^2.2.0"
}
}