-
Notifications
You must be signed in to change notification settings - Fork 170
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "angular-google-analytics",
"description": "Angular Google Analytics - Easy tracking for your AngularJS application",
"version": "1.1.8",
"homepage": "http://github.com/revolunet/angular-google-analytics",
"author": "Julien Bouquillon <[email protected]> (https://github.com/revolunet)",
"contributors": [
"Julien Bouquillon (https://github.com/revolunet)",
"Justin Saunders (https://github.com/justinsa)",
"Chris Esplin (https://github.com/deltaepsilon)",
"Adam Misiorny (https://github.com/adam187)"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/revolunet/angular-google-analytics.git"
},
"engines": {
"node": "*",
"npm": "*"
},
"license": "MIT",
"dependencies": {
"angular": ">=1"
},
"devDependencies": {
"angular-mocks": ">=1",
"angular-scenario": ">=1",
"grunt": "1.0.4",
"grunt-cli": "1.3.2",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-jshint": "2.1.0",
"grunt-contrib-uglify": "4.0.1",
"jasmine-core": "3.4.0",
"karma": "4.0.1",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "2.0.1"
},
"scripts": {
"build": "grunt build",
"lint": "grunt lint",
"release": "grunt release",
"stage": "grunt stage",
"test": "karma start test/karma.conf.js --single-run --browsers Chrome",
"test-server": "karma start test/karma.conf.js --browsers Chrome"
}
}