-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.53 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
{
"name": "tic-tac-toe",
"version": "0.0.1",
"description": "Tic-tac-toe Game in Backbone JS - Gulp - Browserify",
"author": "nathan5x",
"main": "src/app.js",
"repository": {
"type": "git",
"url": "/~https://github.com/nathan5x/Tic-Tac-Toe.git"
},
"browserify": {
"transform": [
"browserify-shim",
"node-underscorify"
]
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js",
"underscore": "./node_modules/lodash",
"backbone": "./node_modules/backbone/backbone.js"
},
"browserify-shim": {
"jquery": "$",
"underscore": "_",
"backbone": {
"depends": [
"jquery",
"underscore:_"
],
"exports": "Backbone"
}
},
"devDependencies": {
"backbone": "latest",
"backbone-relational": "latest",
"browser-sync": "latest",
"browserify": "latest",
"browserify-shim": "latest",
"del": "latest",
"gulp": "^3.9.1",
"gulp-concat": "2.4.x",
"gulp-sass": "latest",
"gulp-doxx": "0.0.5",
"gulp-if": "latest",
"gulp-jshint": "latest",
"gulp-minify-css": "0.4.x",
"gulp-notify": "latest",
"gulp-sourcemaps": "latest",
"gulp-uglify": "latest",
"gulp-usemin": "latest",
"html5shiv": "latest",
"jquery": "latest",
"jshint-stylish": "latest",
"lodash": "latest",
"merge-stream": "0.1.x",
"node-underscorify": "latest",
"require-dir": "latest",
"run-sequence": "latest",
"vinyl-buffer": "latest",
"vinyl-source-stream": "latest",
"watchify": "latest"
}
}