-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
80 lines (80 loc) · 2.05 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
{
"name": "exceptionless",
"version": "1.6.4",
"description": "JavaScript client for Exceptionless",
"license": "Apache-2.0",
"browser": "dist/exceptionless.js",
"browserify": "dist/exceptionless.universal.js",
"webpack": "dist/exceptionless.universal.js",
"main": "dist/exceptionless.node.js",
"jspm": {
"main": "dist/exceptionless.js"
},
"typings": "dist/exceptionless.d.ts",
"scripts": {
"start": "gulp",
"build": "gulp build",
"test": "mocha --colors --require ts-node/register \"./src/**/*-spec.ts\" --exit"
},
"mocha": {
"spec": "src/**/*-spec.ts",
"require": "ts-node/register"
},
"keywords": [
"exceptionless",
"error",
"feature",
"logging",
"tracking",
"reporting"
],
"repository": {
"url": "git://github.com/exceptionless/Exceptionless.JavaScript.git",
"type": "git"
},
"devDependencies": {
"@types/angular": "1.8.0",
"@types/angular-mocks": "1.7.0",
"@types/chai": "4.2.14",
"@types/jquery": "3.5.4",
"@types/mocha": "8.0.4",
"@types/mock-fs": "4.13.0",
"@types/node": "14.14.7",
"@types/sinon": "9.0.8",
"@types/stack-trace": "0.0.29",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"chai": "4.2.0",
"del": "6.0.0",
"es5-shim": "4.5.14",
"es6-shim": "0.35.6",
"eslint": "7.13.0",
"gulp": "4.0.2",
"gulp-concat": "2.6.1",
"gulp-eslint": "6.0.0",
"gulp-exec": "5.0.0",
"gulp-load-plugins": "2.0.5",
"gulp-mocha": "7.0.2",
"gulp-replace": "1.0.0",
"gulp-sourcemaps": "3.0.0",
"gulp-uglify": "3.0.2",
"gulp-wrap-umd": "0.2.1",
"jshint": "2.12.0",
"mock-fs": "4.13.0",
"path": "0.12.7",
"requirejs": "2.3.6",
"rewire": "5.0.0",
"rimraf": "3.0.2",
"sinon": "9.2.1",
"source-map-support": "0.5.19",
"systemjs": "6.7.1",
"tracekit": "0.4.5",
"ts-node": "9.0.0",
"tsproject": "4.0.0-rc.2",
"typescript": "4.0.5",
"typescript-formatter": "7.2.2"
},
"dependencies": {
"stack-trace": "0.0.10"
}
}