-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1020 Bytes
/
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
{
"name": "bsp-nodejs-client",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"module": "dist/index.js",
"scripts": {
"build": "vite build",
"check": "run-p check:*",
"check:format": "prettier --check .",
"check:types": "tsc --noEmit",
"ci": "run-s check lint build coverage",
"coverage": "PROPERTY_BASED_TESTS=off vitest --coverage",
"format": "prettier --write .",
"lint": "eslint",
"test": "vitest",
"webstorm-integration": "vitest --watch --reporter=dot --reporter=json --outputFile=.vitest-result.json"
},
"devDependencies": {
"@bottech/memfs": "^3.4.7-beta.16",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitest/coverage-c8": "^0.23.2",
"@vitest/ui": "^0.23.2",
"eslint": "^8.23.0",
"fast-check": "^3.3.0",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"typescript": "^4.8.2",
"vite": "^3.0.7",
"vitest": "^0.23.0"
},
"dependencies": {
"ajv": "^8.11.0",
"pino": "^8.7.0"
}
}