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 5
/
Copy pathpackage.json
95 lines (95 loc) · 2.65 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
{
"name": "opbeat-js-core",
"version": "0.4.0",
"description": "Opbeat-js core",
"license": "MIT",
"homepage": "https://github.com/opbeat/opbeat-js-core",
"contributors": [
"Hamidreza Jahtalab",
"Kenneth Auchenberg"
],
"main": "src/index.js",
"scripts": {
"prepare-patch": "sh ./scripts/prepare-release patch && npm run push-release",
"prepare-minor": "sh ./scripts/prepare-release minor && npm run push-release",
"push-release": "git push origin master --follow-tags && npm publish",
"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"
},
"files": [
"src/**/*.js",
"test/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/opbeat/opbeat-js-core.git"
},
"browser": {
"opbeat-zone": "./node_modules/opbeat-zone/dist/zone.js"
},
"dependencies": {
"error-stack-parser": "^1.3.5",
"loglevel": "^1.4.0",
"stack-generator": "^1.0.7",
"url-parse": "^1.1.7"
},
"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-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",
"opbeat-zone": "^0.6.17-noexc",
"phantomjs2": "^2.2.0",
"proxyquireify": "^3.0.1",
"run-sequence": "^1.1.5",
"sauce-connect-launcher": "^0.16.0",
"standard": "^5.4.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"standard": {
"globals": [
"jasmine",
"describe",
"beforeEach",
"afterEach",
"it",
"xit",
"expect",
"fail",
"spyOn",
"browser",
"xdescribe"
]
}
}