-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "@forlagshuset/audit-logging",
"version": "2.0.0",
"description": "Audit Logging Package",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fagbokforlaget/audit-logging.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/fagbokforlaget/audit-logging/issues"
},
"homepage": "https://github.com/fagbokforlaget/audit-logging#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"uuid": "^9.0.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"transformIgnorePatterns": [
"^.+\\.js$"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}