-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@qualipool/swissrets-json",
"version": "0.0.2",
"description": "A swiss real estate transfer standard.",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test:unit": "jest --config ./jest.config.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qualipool/swissrets-json.git"
},
"keywords": [
"swissrets",
"json",
"standard",
"switzerland",
"realestatestandards"
],
"author": "Vereinigung Qualipool <hello@qualipool.ch>",
"license": "MIT",
"bugs": {
"url": "https://github.com/qualipool/swissrets-json/issues"
},
"homepage": "https://github.com/qualipool/swissrets-json#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"dependencies": {
"@types/lodash": "^4.17.13",
"lodash": "^4.17.21",
"tslib": "^2.8.1"
}
}