-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
134 lines (134 loc) · 3.37 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@hypertrace/hyperdash",
"version": "0.0.0-PLACEHOLDER",
"license": "LicenseRef-LICENSE",
"main": "dist/hyperdash.umd.js",
"module": "dist/hyperdash.es5.js",
"typings": "dist/types/hyperdash.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' -e 'src/**/*.{test,spec}.ts'",
"lint:test": "tslint -c tslint.spec.json --project tsconfig.json -t codeFrame 'test/**/*.ts' 'src/**/*.{test,spec}.ts'",
"prebuild": "rimraf dist",
"build": "tsc --noEmit && rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache -i",
"commit": "git-cz",
"semantic-release": "semantic-release",
"upload-coverage": "codecov",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js"
],
"moduleNameMapper": {
"^lodash-es$": "lodash"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/hyperdash.ts"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-results"
}
],
[
"jest-html-reporter",
{
"outputPath": "test-results/test-report.html"
}
]
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^27.4.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"commitizen": "^4.3.1",
"core-js": "3.39.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"jest": "^26.6.3",
"jest-config": "^27.5.1",
"jest-html-reporter": "^3.5.0",
"jest-junit": "^16.0.0",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"rollup": "^2.79.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.36.0",
"rxjs": "6.6.7",
"semantic-release": "19.0.5",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.22.17",
"typescript": "^4.0.5"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"core-js": "^3.6.5",
"rxjs": "^6.5.5"
},
"repository": {
"type": "git",
"url": "git@github.com:hypertrace/hyperdash.git"
},
"publishConfig": {
"registry": "https://hypertrace.jfrog.io/artifactory/api/npm/npm/"
},
"release": {
"branches": [
"main"
]
}
}