-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.72 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
{
"name": "@raygun.io/sdk",
"displayName": "RaygunSDK",
"version": "0.1.65",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.min.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rollup -c && npx dts-bundle-generator -o dist/index.d.ts dist/types/index.d.ts",
"build:local": "npm run build && npm pack",
"deploy:npm": "npm publish",
"dev": "start rollup -c -w",
"test": "jest",
"test-browser": "serve .",
"docs": "typedoc"
},
"publishConfig": {
"access": "restricted"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.177",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"dts-bundle-generator": "^6.2.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rollup": "^2.60.0",
"rollup-plugin-auto-named-exports": "^1.0.0-beta.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.0",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typedoc": "^0.22.9",
"typescript": "^4.5.2"
}
}