-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "ldes-connectors",
"repository": "https://github.com/TREEcg/connectors",
"workspaces": [
"packages/*"
],
"scripts": {
"build-changed": "lerna run build --since HEAD",
"build": "npm run build:ts",
"build:ts": "tsc",
"eslint": "eslint . --ext ts",
"test": "lerna run test",
"eslint:cache": "npm run eslint -- --cache",
"lint": "npm run eslint",
"lint:fix": "npm run eslint -- --fix",
"clean": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"prepare": "husky install",
"lerna": "lerna",
"watch": "tsc && tsc -w"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@rdfjs/types": "^1.1.0",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/node": "^20.1.3",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"componentsjs-generator": "^3.1.2",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"lerna": "^7.1.1",
"nyc": "^15.1.0",
"rdf-data-factory": "^1.1.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@treecg/types": "0.4.2",
"husky": "^8.0.3",
"winston": "^3.9.0"
}
}