forked from pimterry/loglevel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "loglevel",
"description": "Minimal lightweight logging for JavaScript, adding reliable log level methods to any available console.log methods",
"version": "0.5.0",
"homepage": "https://github.com/pimterry/loglevel",
"author": {
"name": "Tim Perry",
"email": "[email protected]",
"url": "http://tim-perry.co.uk"
},
"repository": {
"type": "git",
"url": "git://github.com/pimterry/loglevel.git"
},
"bugs": {
"url": "https://github.com/pimterry/loglevel/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/pimterry/loglevel/blob/master/LICENSE-MIT"
}
],
"main": "lib/loglevel",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.4",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-watch": "~0.5.1",
"grunt-contrib-jasmine": "~0.5.2",
"grunt-template-jasmine-requirejs": "~0.1.6",
"grunt-open": "~0.2.2",
"grunt-saucelabs": "~4.1.2",
"grunt-contrib-connect": "~0.5.0",
"grunt-jasmine-node": "~0.1.0"
},
"jam": {
"dependencies": {},
"main": "lib/loglevel.js"
},
"keywords": [
"log",
"logger",
"logging",
"browser"
]
}