-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "sqb.v4",
"private": true,
"version": "4.0.7",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/sqbjs/sqb.git"
},
"workspaces": [
"packages/**"
],
"scripts": {
"preclean": "rimraf build coverage",
"clean": "rman run clean",
"build": "rman build",
"test": "jest --passWithNoTests",
"precover": "rimraf coverage",
"cover": "jest --passWithNoTests --coverage",
"precitest": "rimraf coverage",
"citest": "jest --passWithNoTests --coverage --coverageReporters=lcov"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.9",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-cleanup": "^0.2.6",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">= 16.0",
"npm": ">= 7.0"
}
}