-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "@zazuko/rdf-vocabularies",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"fetch": "wsrun -y 5 -lm --report -c fetch",
"lint": "eslint . --ext .js,.ts --ignore-path .gitignore --ignore-path .eslintignore --quiet",
"pretest": "wsrun -p @zazuko/vocabularies -c prepack",
"test": "c8 -i src mocha packages/**/*.test.ts",
"posttest": "c8 report --reporter=text-lcov >> ./coverage/lcov.info",
"postinstall": "patch-package",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zazuko/rdf-vocabularies.git"
},
"author": "Victor Felder <victor@draft.li> (https://draft.li)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazuko/rdf-vocabularies/issues"
},
"homepage": "https://github.com/zazuko/rdf-vocabularies#readme",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@tpluscode/eslint-config": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"c8": "^7.13.0",
"eslint-import-resolver-typescript": "^3.5.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"mocha": "^10.0.0",
"patch-package": "^7",
"postinstall-postinstall": "^2.1.0",
"typescript": "^5.3.3",
"wsrun": "^5.2.4"
},
"mocha": {
"extension": "ts",
"watch-files": [
"./**/*.ts"
],
"loader": "ts-node/esm"
},
"workspaces": [
"./packages/*",
"./ontologies/*"
],
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}