forked from maksrom/javascript-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·123 lines (123 loc) · 3.17 KB
/
package.json
File metadata and controls
executable file
·123 lines (123 loc) · 3.17 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "javascript-nodejs",
"version": "0.0.1",
"private": true,
"scripts": {
"prod": "NODE_ENV=production node --harmony ./bin/www",
"dev": "NODE_ENV=development supervisor --harmony --debug --ignore node_modules ./bin/www",
"debug": "NODE_ENV=development supervisor --harmony --debug-brk --ignore node_modules ./bin/www",
"test": "NODE_ENV=test supervisor --harmony --debug --ignore node_modules ./bin/www",
"fixperms": "sudo chown -R `id -u` . ~/.npm* ~/.node-gyp"
},
"precommit": "NODE_ENV=development node --harmony `which gulp` pre-commit",
"dependencies": {
"MD5": "*",
"body-parser": "*",
"brfs": "*",
"co": "*",
"escape-html": "*",
"event-stream": "*",
"factor-bundle": "*",
"fs-extra": "*",
"glob": "*",
"gm": "*",
"gulp-cache": "*",
"gulp-concat": "*",
"gulp-debug": "*",
"gulp-dir-sync": "*",
"gulp-if": "*",
"gulp-ignore": "*",
"gulp-jshint-cache": "*",
"gulp-load-plugins": "*",
"gulp-newer": "*",
"gulp-notify": "*",
"gulp-plumber": "*",
"gulp-rimraf": "*",
"gulp-stylus": "*",
"gulp-util": "*",
"gulp.spritesmith": "*",
"imagemin": "*",
"imagemin-pngcrush": "*",
"imagemin-svgo": "*",
"jade": "*",
"javascript-gulp-task-lint": "*",
"javascript-parser": "*",
"jquery": "*",
"js-log": "*",
"koa": "*",
"koa-bodyparser": "*",
"koa-compose": "*",
"koa-csrf": "*",
"koa-favicon": "*",
"koa-formidable": "*",
"koa-generic-session": "*",
"koa-logger": "*",
"koa-mount": "*",
"koa-passport": "*",
"koa-request": "*",
"koa-router": "*",
"koa-send": "*",
"koa-session-mongoose": "*",
"koa-static": "*",
"koa-views": "*",
"lodash": "*",
"map-stream": "*",
"moment": "*",
"mongoose": "3.8",
"mongoose-auto-increment": "*",
"mongoose-troop": "git://github.com/iliakan/mongoose-troop",
"nib": "*",
"nodemailer": "*",
"nodemailer-ses-transport": "*",
"passport": "*",
"passport-local": "*",
"path-to-regexp": "*",
"prismjs": "git://github.com/LeaVerou/prism#gh-pages",
"stylus": "*",
"svgutils": "*",
"through2": "*",
"thunkify": "*",
"vinyl-fs": "*",
"vinyl-source-stream": "*",
"winston": "*",
"yargs": "*"
},
"devDependencies": {
"better-assert": "^1.0.1",
"browserify": "*",
"clarify": "*",
"co-mocha": "*",
"gulp": "*",
"gulp-autoprefixer": "*",
"gulp-flatten": "*",
"gulp-jshint": "*",
"gulp-livereload": "*",
"gulp-mocha": "*",
"gulp-sourcemaps": "*",
"gulp-stylus-sprite": "*",
"gulp-supervisor": "*",
"lazypipe": "*",
"mocha": "*",
"node-notifier": "*",
"should": "*",
"sinon": "*",
"superagent": "*",
"supertest": "*",
"supervisor": "*",
"trace": "*",
"watchify": "*"
},
"engines": {
"node": ">=0.11.13"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/iliakan/javascript-nodejs.git"
},
"author": "Ilya Kantor and other contributors in git repo",
"license": "CC BY-NC-SA 3.0",
"bugs": {
"url": "https://github.com/iliakan/javascript-nodejs/issues"
}
}