forked from jonnyreeves/js-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 902 Bytes
/
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
{
"name": "js-logger",
"version": "1.2.0",
"description": "Lightweight, unobtrusive, configurable JavaScript logger",
"author": "Jonny Reeves (http://jonnyreeves.co.uk)",
"homepage": "http://github.com/jonnyreeves/js-logger",
"repository": {
"type": "git",
"url": "git://github.com/jonnyreeves/js-logger.git"
},
"bugs": {
"url": "http://github.com/jonnyreeves/js-logger/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jonnyreeves/js-logger/blob/master/MIT-LICENSE.txt"
}
],
"main": "src/logger.js",
"scripts": {
"test": "gulp test lint"
},
"devDependencies": {
"gulp": "~3.8.11",
"gulp-util": "~2.2.14",
"gulp-uglify": "~1.2.0",
"gulp-replace": "~0.5.3",
"gulp-rename": "~1.2.0",
"gulp-qunit": "~1.2.1",
"gulp-jshint": "~1.10.0",
"gulp-size": "~1.2.1",
"gulp-git": "~1.2.0"
}
}