-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 2.05 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
{
"name": "rdf-libraries",
"version": "0.0.9",
"description": "Simple client-side lib for working with ontologies",
"scripts": {
"test": "./scripts/run-packages.sh test",
"clean": "yarn test --clearCache; yarn clean cache",
"build": "./scripts/run-packages.sh build",
"generate-docs": "./scripts/run-packages.sh generate-docs",
"open-docs": "./scripts/run-packages.sh open-docs",
"lint": "./scripts/run-packages.sh lint",
"create-links-to-local-packages": "nx run-many --target=link --all",
"create-links": "yarn create-links-to-local-packages",
"use-local-packages:link": "nx run-many --target=use-local-packages:link --all",
"local:link": "yarn use-local-packages:link",
"use-local-packages:unlink": "nx run-many --target=use-local-packages:unlink --all",
"local:unlink": "yarn use-local-packages:unlink"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Telicent-oss/rdf-libraries.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Telicent-oss/rdf-libraries/issues"
},
"homepage": "https://github.com/Telicent-oss/rdf-libraries#readme",
"dependencies": {
"chalk": "^5.3.0",
"tslib": "^2.6.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@nrwl/workspace": "19.5.4",
"@nx/jest": "19.5.4",
"@nx/js": "19.5.4",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@types/jest": "^29.5.12",
"@types/node": "18.19.9",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"babel-jest": "^29.7.0",
"eslint": "8.56.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nx": "19.5.4",
"prettier": "^2.8.8",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"nx": {
"targets": {
"generate-docs": {
"outputs": [
"{projectRoot}/docs"
]
}
}
},
"workspaces": [
"packages/*"
],
"resolutions": {
"braces": "^3.0.3"
}
}