-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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": "flowable-fetch",
"version": "4.2.0",
"description": "Custom Node.js fetch method for the Flowable BPMN REST API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": "git@github.com:ugent-library/flowable-fetch.git",
"author": "Koen Verheyen <koen.verheyen@inuits.eu>",
"license": "MIT",
"scripts": {
"build": "tsup",
"lint": "eslint . && tsc",
"lint:bundled": "tsc dist/index.d.ts dist/index.d.mts",
"non-dirty-check": "git diff --quiet --exit-code",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"precommit": [
"lint",
"build",
"lint:bundled",
"non-dirty-check"
],
"dependencies": {
"dotenv": "^16.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.52.0",
"eslint-plugin-unused-imports": "^3.0.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.5",
"vitest": "^0.34.6"
}
}