-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.99 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.99 KB
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
{
"name": "jerrbit",
"version": "1.0.1",
"description": "Report client-side, browser events and exceptions to an Errbit or Airbrake service",
"main": "index.js",
"scripts": {
"prepublish": "rm -rf cjs && npm run build-development && npm run build-production && npm run build-umd",
"build-umd": "rm -rf umd && npm run build-umd-development && npm run build-umd-production",
"build-umd-development": "NODE_ENV=development rollup --output.file umd/jerrbit.js --config rollup.umd.config.js",
"build-umd-production": "NODE_ENV=production rollup --output.file umd/jerrbit.min.js --config rollup.umd.config.js",
"build-development": "NODE_ENV=development rollup --output.file cjs/jerrbit.js --config rollup.config.js",
"build-production": "NODE_ENV=production rollup --output.file cjs/jerrbit.min.js --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greena13/jerrbit.git"
},
"keywords": [
"Errbit",
"Airbrake",
"exception",
"reporting",
"monitoring",
"browser",
"client-side"
],
"files": [
"cjs",
"umd",
"package.json",
"README.md",
"LICENSE",
"index.d.ts",
"index.js"
],
"typings": "./index.d.ts",
"author": "Aleck Greenham",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "7.1.0",
"@babel/preset-env": "^7.1.0",
"rollup": "0.66.2",
"rollup-plugin-analyzer": "^2.1.0",
"rollup-plugin-babel": "4.1.0-0",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-license": "^0.7.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^6.0.0"
},
"bugs": {
"url": "https://github.com/greena13/jerrbit/issues"
},
"homepage": "https://github.com/greena13/jerrbit#readme",
"dependencies": {
"cookie": "^0.3.1",
"merge": "^1.2.0",
"platform": "^1.3.1",
"query-string": "5",
"stack-trace": "0.0.10",
"whatwg-fetch": "^3.0.0"
}
}