-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
{
"name": "@digitevent/type-lib",
"version": "1.1.2",
"description": "A library of utility types used across Digitevent repositories.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "jest && npm run test:types",
"test:watch": "jest --watch --coverage",
"test:cov": "jest --coverage",
"test:types": "npx tsd --files src/**/*test-d.ts"
},
"repository": {
"type": "git",
"url": "git@github.com:digitevent/type-lib.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Digitevent",
"license": "MIT",
"bugs": {
"url": "https://github.com/digitevent/type-lib/issues"
},
"homepage": "https://github.com/digitevent/type-lib#readme",
"devDependencies": {
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"tsd": "^0.25.0",
"typescript": "^4.8.4"
}
}