-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
93 lines (93 loc) · 2.29 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@logdna/browser",
"version": "2.3.1",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"license": "MIT",
"types": "./dist/types/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "npm run test -- --coverage",
"test:ci": "npm run test:coverage",
"serve": "serve dist",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/logdna/logdna-browser"
},
"keywords": [
"logdna",
"logging",
"performance",
"metrics",
"browser",
"frontend"
],
"files": [
"src",
"dist",
"README.md",
"LICENSE"
],
"author": {
"name": "LogDNA, Inc.",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/logdna/logdna-browser/issues"
},
"homepage": "https://github.com/logdna/logdna-browser#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^6.1.0",
"@types/jest": "^26.0.15",
"@types/node": "^10.11.0",
"git-commit-template": "^1.0.5",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"jest-junit": "^12.0.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rollup": "^2.33.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^17.4.2",
"semantic-release-config-logdna": "^1.1.1",
"serve": "^11.3.2",
"ts-jest": "^26.4.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^4.4.4"
},
"dependencies": {
"detect-browser": "^5.2.0",
"fast-safe-stringify": "^2.0.7",
"stacktrace-js": "^2.0.2"
},
"publishConfig": {
"access": "public",
"tag": "beta"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"prepare-commit-msg": "git-commit-template ./.github/.git-commit-template.txt"
}
},
"release": {
"branches": [
"main"
],
"extends": "semantic-release-config-logdna"
}
}