-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.23 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
{
"name": "@dynatrace/openkit-js",
"version": "3.1.0-SNAPSHOT",
"description": "OpenKit-JavaScript reference implementation",
"author": "Dynatrace",
"types": "dist/types/index.d.ts",
"main": "dist/node/index.js",
"browser": "dist/browser/openkit.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Dynatrace/openkit-js"
},
"scripts": {
"test": "jest",
"lint": "eslint --cache src/**/*.ts --ignore-pattern .gitignore",
"lint:spec": "eslint --cache test/**/*.ts --cache-file test/.eslintcache --ignore-pattern .gitignore",
"docs": "yarn docs:markdown --plugin none",
"docs:markdown": "typedoc --out docs src/OpenKitBuilder.ts src/index.ts src/api --tsconfig tsconfig.base.json --exclude src/core --excludePrivate --excludeExternals --cleanOutputDir",
"build": "yarn build:browser && yarn build:node",
"build:node": "tsc -p tsconfig.node.json",
"build:browser": "webpack --mode production",
"build:browser:dev": "webpack",
"prepare": "cd .. && husky install public/.husky"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.18.28",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^39.7.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^36.0.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"ts-mockito": "^2.6.1",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.11.2",
"typescript": "^4.4.3",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0",
"yarn": "^1.22.15"
},
"dependencies": {
"axios": "^1.7.3"
},
"resolutions": {
"minimist": "^1.2.0"
},
"files": [
"dist",
"docs"
],
"lint-staged": {
"*.ts": "eslint --cache --fix",
"**/*": "prettier --write"
}
}