This repository was archived by the owner on Aug 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 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
60
61
62
{
"name": "@openenwi/bo4e-ts",
"version": "1.0.0",
"description": "Geschäftsobjekte der Energiewirtschaft (BO4E) TS-Library",
"main": "lib/public_api.js",
"types": "lib/public_api.d.ts",
"repository": {
"url": "https://github.com/openEnWi/tsBO4E-lib.git"
},
"homepage": "https://openenwi.github.io/tsBO4E-lib/index.html",
"scripts": {
"lint": "npx eslint src/**/*.ts",
"test": "jest",
"test:dev": "jest --watchAll",
"run:all": "npm run lint && npm run test && npm run build && npm run docs:generate && npm run docs:add",
"build": "tsc",
"docs:generate": "npx typedoc",
"docs:add": "git add ./docs",
"prepare": "husky install"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"files": [
"lib"
],
"keywords": [
"bo4e",
"EnWi",
"OpenEnWi",
"Energiewirtschaft",
"TS",
"TypeScript",
"lib",
"Libray"
],
"author": "Fabian Angst",
"license": "MPL-2.0",
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^25.3.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
},
"publishConfig": {
"tag": "latest"
}
}