-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.48 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
{
"name": "logr.js",
"description": "Logr is a JavaScript console logging replacement with support for dynamic object logging injection",
"homepage": "http://eclifford.github.io/logr/",
"version": "0.2.2",
"keywords": [
"logging",
"javascript",
"console"
],
"author": {
"name": "Eric Clifford",
"email": "[email protected]"
},
"main": "logr.js",
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
".travis.yml",
".coveralls.yml",
"package.json",
"Gruntfile.js",
".gitignore"
],
"scripts": {
"test": "grunt karma:ci"
},
"repository": {
"type": "git",
"url": "https://github.com/eclifford/logr.git"
},
"bugs": {
"url": "https://github.com/eclifford/logr/issues"
},
"devDependencies": {
"chai": "^1.9.1",
"grunt": "^0.4.5",
"grunt-bump": "^0.0.16",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.5.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-conventional-changelog": "^1.1.0",
"grunt-karma": "^0.8.3",
"grunt-text-replace": "^0.3.12",
"karma": "^0.12.23",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.7",
"karma-coverage": "^0.2.6",
"karma-coveralls": "^0.1.4",
"karma-es5-shim": "0.0.4",
"karma-jquery": "^0.1.0",
"karma-mocha": "^0.1.4",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sinon-chai": "^0.2.0",
"mocha": "^1.20.1",
"phantomjs": "^1.9.7-12"
}
}