forked from ajbrown/angular-loggly-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.71 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
{
"name": "angular-loggly-logger",
"version": "0.2.1",
"main": "index.js",
"description": "An AngularJs service and $log decorator for Loggly",
"repository": {
"type": "git",
"url": "https://github.com/ajbrown/angular-loggly-logger.git"
},
"bugs": "https://github.com/ajbrown/angular-loggly-logger/issues",
"author": "A.J. Brown <[email protected]> (http://ajbrown.org)",
"contributors": [
"Jason Skowronski (https://github.com/mostlyjason)",
"Vin Halbwachs (https://github.com/vhalbwachs)"
],
"keywords": [
"angular",
"logging",
"logger",
"log"
],
"license": "MIT",
"devDependencies": {
"bower": "^1.3.1",
"grunt": "^0.4.4",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^0.10.1",
"http-server": "^0.6.1",
"jasmine-core": "^2.2.0",
"karma": "~0.12",
"karma-chrome-launcher": "^0.1.7",
"karma-coverage": "^0.2.7",
"karma-coveralls": "^0.1.5",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.5",
"karma-phantomjs-launcher": "^0.1.4",
"karma-spec-reporter": "0.0.16",
"protractor": "~0.17.0",
"shelljs": "^0.2.6"
},
"scripts": {
"postinstall": "bower install --allow-root",
"start": "http-server -p 8000",
"update-webdriver": "webdriver-manager update",
"test": "grunt karma:unit",
"test-single-run": "grunt karma:travis:run",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + cat('bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}