source: imaps-frontend/node_modules/error-stack-parser/package.json@ d565449

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

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.0 KB
Line 
1{
2 "name": "error-stack-parser",
3 "description": "Extract meaning from JS Errors",
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.1.4",
11 "license": "MIT",
12 "keywords": [
13 "stacktrace",
14 "error",
15 "stack",
16 "parser"
17 ],
18 "homepage": "https://www.stacktracejs.com",
19 "dependencies": {
20 "stackframe": "^1.3.4"
21 },
22 "repository": {
23 "type": "git",
24 "url": "git://github.com/stacktracejs/error-stack-parser.git"
25 },
26 "devDependencies": {
27 "eslint": "^8.17.0",
28 "jasmine": "^4.1.0",
29 "jasmine-core": "^4.1.1",
30 "karma": "^6.3.20",
31 "karma-chrome-launcher": "^3.1.1",
32 "karma-coverage": "^2.2.0",
33 "karma-coveralls": "^2.1.0",
34 "karma-firefox-launcher": "^2.1.2",
35 "karma-ie-launcher": "^1.0.0",
36 "karma-jasmine": "^4.0.2",
37 "karma-opera-launcher": "^1.0.0",
38 "karma-phantomjs-launcher": "^1.0.4",
39 "karma-safari-launcher": "^1.0.0",
40 "karma-sauce-launcher": "^4.3.6",
41 "karma-spec-reporter": "^0.0.34",
42 "uglify-es": "^3.3.9"
43 },
44 "bugs": {
45 "url": "https://github.com/stacktracejs/error-stack-parser/issues"
46 },
47 "main": "./error-stack-parser.js",
48 "typings": "./error-stack-parser.d.ts",
49 "files": [
50 "LICENSE",
51 "README.md",
52 "error-stack-parser.js",
53 "error-stack-parser.d.ts",
54 "dist/"
55 ],
56 "scripts": {
57 "lint": "eslint --fix .",
58 "test": "karma start karma.conf.js --single-run",
59 "test-pr": "karma start karma.conf.js --single-run --browsers Firefox,Chrome_No_Sandbox",
60 "test-ci": "karma start karma.conf.ci.js --single-run",
61 "prepare": "cp error-stack-parser.js dist/ && uglifyjs node_modules/stackframe/stackframe.js error-stack-parser.js -o dist/error-stack-parser.min.js --compress --mangle --source-map \"url=error-stack-parser.min.js.map\""
62 }
63}
Note: See TracBrowser for help on using the repository browser.