source: imaps-frontend/node_modules/stacktrace-js/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[d565449]1{
2 "name": "stacktrace-js",
3 "description": "Framework-agnostic, micro-library for getting stack traces in all environments",
4 "maintainers": [
5 "Eric Wendelin <me@eriwen.com> (https://www.eriwen.com)",
6 "Victor Homyakov <vkhomyackov@gmail.com> (https://github.com/victor-homyakov)",
7 "Oliver Salzburg (https://github.com/oliversalzburg)",
8 "Ben Gourley (https://github.com/bengourley)"
9 ],
10 "version": "2.0.2",
11 "license": "MIT",
12 "keywords": [
13 "stacktrace",
14 "error",
15 "debugger",
16 "client",
17 "browser"
18 ],
19 "homepage": "https://www.stacktracejs.com",
20 "repository": {
21 "type": "git",
22 "url": "git://github.com/stacktracejs/stacktrace.js.git"
23 },
24 "dependencies": {
25 "error-stack-parser": "^2.0.6",
26 "stack-generator": "^2.0.5",
27 "stacktrace-gps": "^3.0.4"
28 },
29 "devDependencies": {
30 "browserify": "^16.3.0",
31 "colors": "^1.1.2",
32 "del": "^3.0.0",
33 "es6-promise": "^3.1.2",
34 "eslint": "^6.8.0",
35 "gulp": "^3.9.1",
36 "gulp-concat": "^2.6.0",
37 "gulp-rename": "^1.2.2",
38 "gulp-sourcemaps": "^1.12.0",
39 "gulp-uglify": "^1.5.1",
40 "jasmine": "^2.7.0",
41 "jasmine-ajax": "^3.2.0",
42 "jasmine-core": "^2.7.0",
43 "jsdoc-dash-template": "^2.1.0",
44 "json3": "^3.3.2",
45 "karma": "^4.4.1",
46 "karma-chrome-launcher": "^3.1.0",
47 "karma-coverage": "^2.0.1",
48 "karma-coveralls": "^2.1.0",
49 "karma-firefox-launcher": "^1.2.0",
50 "karma-ie-launcher": "^1.0.0",
51 "karma-jasmine": "^1.1.2",
52 "karma-jasmine-ajax": "^0.1.13",
53 "karma-opera-launcher": "^1.0.0",
54 "karma-phantomjs-launcher": "^1.0.4",
55 "karma-safari-launcher": "^1.0.0",
56 "karma-sauce-launcher": "^2.0.2",
57 "karma-spec-reporter": "^0.0.32",
58 "run-sequence": "^1.1.2",
59 "vinyl-buffer": "^1.0.0",
60 "vinyl-source-stream": "^1.1.0"
61 },
62 "bugs": {
63 "url": "https://github.com/stacktracejs/stacktrace.js/issues"
64 },
65 "main": "./stacktrace.js",
66 "files": [
67 "LICENSE",
68 "CHANGELOG.md",
69 "README.md",
70 "stacktrace.js",
71 "stacktrace-js.d.ts",
72 "dist/"
73 ],
74 "typings": "./stacktrace-js.d.ts",
75 "scripts": {
76 "lint": "eslint --fix polyfills.js stacktrace.js spec/",
77 "prepare": "gulp dist",
78 "test": "karma start karma.conf.js --single-run",
79 "test-pr": "karma start karma.conf.js --single-run --browsers Firefox,Chrome_Travis",
80 "test-ci": "karma start karma.conf.ci.js --single-run"
81 }
82}
Note: See TracBrowser for help on using the repository browser.