-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (56 loc) · 1.2 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
{
"name": "gulp-starter",
"version": "0.1.1",
"description": "Gulp starter with common tasks and scenarios",
"repository": {
"type": "git",
"url": "git://github.com/greypants/gulp-starter.git"
},
"browser": {
"underscore": "backbone/node_modules/underscore",
"Physi": "./bower_components/Physijs/physi.js"
},
"browserify": {
"transform": [
"browserify-shim",
"coffeeify",
"hbsfy"
]
},
"browserify-shim": {
"plugin": {
"depends": [
"jquery:$"
]
},
"Physi": {
"exports": "Physi",
"depends": [
"three:three"
]
}
},
"devDependencies": {
"browser-sync": "~1.3.6",
"browserify": "~5.10.1",
"browserify-shim": "~3.7.0",
"coffeeify": "~0.7.0",
"gulp": "^3.8.7",
"gulp-changed": "^0.4.1",
"gulp-imagemin": "^0.6.2",
"gulp-notify": "^1.4.2",
"gulp-stylus": "^1.3.3",
"gulp-util": "^3.0.0",
"handlebars": "^1.3.0",
"hbsfy": "~2.0.0",
"pretty-hrtime": "~0.2.1",
"require-dir": "^0.1.0",
"vinyl-source-stream": "~0.1.1",
"watchify": "~1.0.2"
},
"dependencies": {
"backbone": "~1.1.2",
"jquery": "~2.1.0",
"three": "^0.66.4"
}
}