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 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.42 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
{
"name": "opbeat-plain-js",
"version": "3.1.4",
"description": "Official Opbeat integration for plain JavaScript",
"license": "MIT",
"homepage": "https://github.com/opbeat/opbeat-plain-js",
"contributors": [
"Hamidreza Jahtalab",
"Kenneth Auchenberg"
],
"main": "src/opbeat.js",
"scripts": {
"build": "gulp build:release",
"karma": "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"
},
"private": true,
"files": [
"dist/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/opbeat/opbeat-plain-js.git"
},
"dependencies": {
"es6-promise": "^4.0.5",
"loglevel": "^1.4.0",
"opbeat-js-core": "git://github.com/opbeat/opbeat-js-core.git"
},
"devDependencies": {
"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": "^2.4.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": "^1.0.3",
"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",
"phantomjs2": "^2.2.0",
"proxyquireify": "^3.0.1",
"run-sequence": "^1.1.5",
"sauce-connect-launcher": "^0.14.0",
"selenium-standalone": "^4.8.0",
"standard": "^5.4.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webdriverio": "^3.4.0"
},
"standard": {
"globals": [
"jasmine",
"describe",
"beforeEach",
"afterEach",
"it",
"xit",
"expect",
"fail",
"spyOn",
"browser",
"xdescribe"
]
}
}