-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.21 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.21 KB
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
77
78
79
80
81
82
83
{
"name": "codedoodl.es-chrome-extension",
"description": "new tab chrome extension to showcase code doodles",
"version": "0.0.1",
"homepage": "https://github.com/neilcarpenter/codedoodl.es-chrome-extension",
"author": {
"name": "Neil Carpenter <neilanthonycarpenter@gmail.com> (http://neilcarpenter.com/)"
},
"repository": {
"type": "git",
"url": "git://github.com/neilcarpenter/codedoodl.es-chrome-extension.git"
},
"bugs": {
"url": "https://github.com/neilcarpenter/codedoodl.es-chrome-extension/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.32"
},
"folders": {
"dest": "dist",
"src": "src",
"vendor": "src/vendor"
},
"browserify": {
"transform": [
"coffeeify"
]
},
"devDependencies": {
"browser-sync": "~2.7.1",
"browserify": "~6.0.3",
"coffee-script": "1.8.0",
"coffeeify": "~0.7.0",
"ent": "^2.2.0",
"gulp": "^3.8.8",
"gulp-autoprefixer": "~1.0.1",
"gulp-changed": "^1.0.0",
"gulp-combine-media-queries": "~0.1.0",
"gulp-compass": "^1.3.1",
"gulp-concat": "^2.4.1",
"gulp-filter": "^1.0.2",
"gulp-imagemin": "^1.1.0",
"gulp-minify-css": "~0.3.10",
"gulp-minify-html": "~0.1.6",
"gulp-minify-inline": "~0.1.0",
"gulp-notify": "^2.0.0",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.4.0",
"gulp-rev": "^1.1.0",
"gulp-rimraf": "^0.1.1",
"gulp-sass": "^1.2.2",
"gulp-strip-debug": "~1.0.1",
"gulp-uglify": "~1.0.1",
"gulp-util": "^3.0.1",
"hashids": "^1.0.1",
"imagemin-pngcrush": "^3.0.1",
"map-stream": "0.0.5",
"pretty-hrtime": "^0.2.2",
"replace-ext": "0.0.1",
"require-dir": "^0.1.0",
"run-sequence": "^1.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "~1.0.0",
"watchify": "~2.0.0",
"xml2js": "^0.4.4"
},
"vendor": {
"jquery": "jquery-2.1.0.js",
"underscore": "underscore.js",
"backbone": "backbone.js",
"backbone-deep-model": "backbone-deep-model.js",
"plugins": "plugins.js",
"tweenlite": "TweenLite.js",
"css-plugin": "CSSPlugin.js",
"easepack": "EasePack.js",
"iscroll": "iscroll-probe.js"
},
"dependencies": {
"ncp": "^1.0.1",
"walk": "^2.3.4"
}
}