-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.57 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
{
"name": "@gibraltarsoftware/loupe-typescript",
"version": "2.0.4",
"description": "Loupe Agent for Web clients",
"keywords": [
"Gibraltar",
"Loupe",
"Agent",
"TypeScript"
],
"homepage": "https://github.com/GibraltarSoftware/Loupe.JavaScript",
"author": "Gibraltar Software",
"license": "ISC",
"bugs": {
"url": "https://github.com/GibraltarSoftware/Loupe.JavaScript/issues",
"email": "support@gibraltarsoftware.com"
},
"repository": {
"type": "git",
"url": "https://github.com/GibraltarSoftware/Loupe.JavaScript"
},
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npx webpack --config=webpack.config.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/xmlhttprequest": "^1.8.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.2.2",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"@types/node": "^20.11.21",
"source-map-support": "^0.5.21",
"stacktrace-js": "^2.0.2",
"ts-lint": "^4.5.1"
},
"files": [
"dist/**/*"
]
}