-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@netatwork/odata-edm-generator",
"version": "2.0.2",
"description": "OData EDM generator",
"type": "module",
"exports": {
"default": "./dist/esm/api/decorators.js",
"types": "./dist/esm/api/decorators.d.ts"
},
"bin": {
"gen-edm": "dist/esm/cli/index.js"
},
"scripts": {
"lint": "eslint . --ext .ts --cache",
"prebuild": "rimraf dist && npm run lint",
"build": "tsc",
"dev": "tsc -w --preserveWatchOutput",
"pretest": "tsc -p tests/tsconfig.json",
"test": "mocha --config ./tests/.mocharc.cjs",
"test:dev": "mocha --config ./tests/.mocharc.cjs --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Netatwork-de/odata-edm-generator.git"
},
"keywords": [
"odata",
"edm",
"generator"
],
"author": "Net at Work GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Netatwork-de/odata-edm-generator/issues"
},
"homepage": "https://github.com/Netatwork-de/odata-edm-generator#readme",
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@netatwork/mocha-utils": "^2.1.4",
"@types/chai": "^4.3.19",
"@types/diff": "^5.0.9",
"@types/ejs": "^3.1.1",
"@types/mocha": "^10.0.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^22.5.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"chai": "^5.1.0",
"colorette": "^2.0.19",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"diff": "^6.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsdoc": "^50.3.0",
"eslint-plugin-mocha": "^10.5.0",
"husky": "^9.1.5",
"mocha": "^10.2.0",
"mock-fs": "^5.2.0",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"uuid": "^10.0.0"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.0",
"eta": "^3.2.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}