This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 loc) · 2.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "opbeat-angular",
"version": "3.15.1",
"description": "Official Opbeat integration for AngularJS",
"license": "MIT",
"homepage": "https://github.com/opbeat/opbeat-angular",
"contributors": [
"Hamidreza Jahtalab",
"Kenneth Auchenberg"
],
"main": "src/opbeat-angular.js",
"scripts": {
"build": "gulp build:release",
"karma": "node node_modules/karma/bin/karma start",
"karma-coverage": "node node_modules/karma/bin/karma start --coverage",
"test": "node node_modules/standard/bin/cmd.js src/**/* && gulp test:unit:sauce && gulp test:e2e",
"prepublish": "npm run build",
"prepare-patch": "sh ./scripts/prepare-release patch && sh ./scripts/make-release",
"prepare-minor": "sh ./scripts/prepare-release minor && sh ./scripts/make-release"
},
"private": true,
"files": [
"dist/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/opbeat/opbeat-angular.git"
},
"browser": {
"opbeat-zone": "./node_modules/opbeat-zone/dist/zone.js"
},
"dependencies": {
"loglevel": "^1.4.0",
"opbeat-js-core": "^0.4.0",
"opbeat-zone": "^0.8.12-prm"
},
"devDependencies": {
"angular": "^1.5.0",
"angular-mocks": "^1.5.8",
"angular-resource": "^1.5.0",
"browserify": "^13.0.1",
"browserify-istanbul": "^2.0.0",
"event-stream": "^3.3.1",
"gulp": "^3.9.1",
"gulp-awspublish": "^3.0.1",
"gulp-concat": "^2.4.1",
"gulp-connect": "^2.3.1",
"gulp-derequire": "^2.1.0",
"gulp-inject-version": "^1.0.0",
"gulp-jasmine-phantom": "^2.1.2",
"gulp-json-editor": "^2.2.1",
"gulp-livereload": "^3.8.1",
"gulp-protractor": "^3.0.0",
"gulp-release-tasks": "0.0.3",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-task-listing": "^1.0.1",
"gulp-uglify": "^1.4.1",
"gulp-webdriver": "^2.0.2",
"istanbul": "^0.4.4",
"jasmine": "^2.4.1",
"jasmine-ajax": "^3.2.0",
"jasmine-core": "^2.4.1",
"jasmine-spec-reporter": "^2.4.0",
"karma": "^0.13.15",
"karma-browserify": "^4.4.2",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-failed-reporter": "0.0.3",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "~0.3.6",
"karma-sauce-launcher": "^0.3.1",
"karma-spec-reporter": "0.0.23",
"opbeat-test": "^0.1.1",
"phantomjs2": "^2.2.0",
"proxyquireify": "^3.0.1",
"run-sequence": "^1.1.5",
"sauce-connect-launcher": "^0.14.0",
"selenium-standalone": "6.5.0",
"standard": "^5.4.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"wdio-jasmine-framework": "^0.2.19",
"wdio-spec-reporter": "^0.1.0",
"webdriverio": "^4.8.0"
},
"standard": {
"globals": [
"jasmine",
"describe",
"beforeEach",
"afterEach",
"it",
"xit",
"expect",
"fail",
"spyOn",
"browser",
"xdescribe"
]
}
}