forked from GoogleCloudPlatform/stackdriver-errors-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "stackdriver-errors-js",
"version": "0.7.0",
"description": "Experimental client-side JavaScript library to report errors to Stackdriver Error Reporting",
"main": "stackdriver-errors.js",
"scripts": {
"clean": "rimraf dist/",
"dist": "gulp lib-concat",
"lint": "eslint --ignore-path .gitignore .",
"prepare": "npm run clean && npm run dist",
"pretest": "npm run lint",
"start": "gulp demo && http-server ./dist -o",
"test": "mocha -r test/setup.js test/test.js",
"version": "sed -i s/@[0-9.]\\\\{5,\\\\}/@${npm_package_version}/g README.md && git add README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/stackdriver-errors-js"
},
"files": [
"dist/"
],
"keywords": [
"stackdriver",
"error",
"crash",
"reporting",
"javascript",
"web"
],
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"browser-pack-flat": "^3.4.1",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"http-server": "^0.11.1",
"mocha": "^5.2.0",
"nise": "^1.4.10",
"rimraf": "^2.6.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"core-js": "^2.6.9",
"stacktrace-js": "^2.0.0"
}
}