-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1 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
{
"name": "barnard59-root",
"private": true,
"version": "1.1.4",
"description": "Barnard59 Linked Data pipelines",
"type": "module",
"scripts": {
"lint": "eslint . --quiet --ignore-path .gitignore",
"test": "wsrun -sm --report test",
"release": "changeset publish"
},
"workspaces": [
"packages/*",
"test/*"
],
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@tpluscode/eslint-config": "^0.4.9",
"@types/chai": "^4.3.16",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"c8": "^7.6.0",
"chai": "^4.3.10",
"eslint-import-resolver-typescript": "^3.6.1",
"find-workspaces": "^0.3.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"wsrun": "^5.2.4"
},
"lint-staged": {
"*.js": [
"eslint --fix --quiet"
]
},
"engines": {
"node": ">=16"
}
}