-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.36 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": "safeguard-fetch",
"version": "0.0.1",
"description": "A fetch wrapper that adds some safeguards regarding resource querying for Linked Data query engines.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BramComyn/safeguard-fetch.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/safeguard-fetch",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/safeguard-fetch/^0.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/safeguard-fetch/^0.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/safeguard-fetch/^0.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/safeguard-fetch/^0.0.0/dist/": "dist/"
},
"files": [
"config",
"dist"
],
"scripts": {
"build": "npm run build:ts && npm run build:components",
"build:components": "componentsjs-generator -s src -c dist/components -i .componentsignore",
"build:ts": "tsc",
"lint": "npm run lint:eslint && npm run lint:markdown",
"lint:eslint": "eslint . --cache --max-warnings 0",
"lint:markdown": "markdownlint-cli2",
"release": "commit-and-tag-version",
"test": "jest"
},
"dependencies": {
"tsconfig": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.12",
"commit-and-tag-version": "^12.4.2",
"componentsjs-generator": "^4.0.1",
"husky": "^4.3.8",
"jest": "^29.7.0",
"markdownlint-cli2": "^0.13.0",
"opinionated-eslint-config": "^0.1.0",
"simple-git": "^3.25.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typed-emitter": "^2.1.0",
"typescript": "^5.5.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commit-and-tag-version": {
"scripts": {
"postbump": "ts-node ./scripts/upgradeConfig.ts",
"postchangelog": "markdownlint-cli2 --fix"
},
"writerOpts": {
"commitsSort": false
}
}
}