-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.01 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
{
"private": true,
"author": {
"name": "Digitaal Vlaanderen"
},
"homepage": "https://github.com/informatievlaanderen/OSLO-UML-Transformer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/informatievlaanderen/OSLO-UML-Transformer.git"
},
"bugs": {
"url": "https://github.com/informatievlaanderen/OSLO-UML-Transformer/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"test-changed": "lerna run test --since HEAD",
"build-changed": "lerna run build --since HEAD",
"build": "npm run build:ts",
"build:ts": "tsc",
"build-watch": "tsc --watch",
"lint": "eslint . --ext .ts --cache",
"lint:fix": "eslint . --ext .ts --cache --fix",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "lerna run test:unit",
"test:integration": "lerna run test:integration",
"publish": "npm run build",
"publish-release": "lerna publish"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.14.2",
"@rdfjs/types": "^1.1.0",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.2",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"esbuild": "^0.20.0",
"eslint": "^8.16.0",
"eslint-config-es": "3.31",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-lerna": "^2.0.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.1",
"jest-extended": "^3.1.0",
"jest-mock-extended": "^3.0.1",
"jest-runner-groups": "^2.2.0",
"tiny-glob": "^0.2.9",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@oslo-flanders/ea-converter": "^0.0.5-alpha.0",
"lerna": "^8.1.8",
"reflect-metadata": "^0.1.13"
}
}