-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
86 lines (86 loc) · 2.25 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@datasert/cronjs",
"private": true,
"workspaces": [
"packages/*"
],
"author": "Santhosh Kumar <[email protected]>",
"homepage": "https://github.com/datasert/cronjs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/datasert/cronjs.git"
},
"scripts": {
"tsc": "lerna run tsc",
"clean": "lerna run clean",
"cleantsc": "lerna run cleantsc",
"lint": "lerna run lint",
"test": "yarn tsc && lerna run test",
"repair": "lerna repair",
"new-version": "lerna publish --no-git-tag-version --no-push --skip-npm --force-publish '*'",
"check-packages": "yarn clean && yarn tsc && yarn test && yarn lint",
"release": "lerna publish from-package --yes",
"updlibs": "yarn add --dev -W @types/jest jest swc @swc/core @swc/jest typescript prettier eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier eslint-plugin-prettier",
"format": "prettier --write .",
"ci:setup": "true",
"ci:install": "yarn install",
"ci:compile": "yarn tsc",
"ci:format": "prettier --check .",
"ci:lint": "yarn lint",
"ci:test": "yarn test",
"ci:build": "yarn tsc",
"ci:publish": "yarn release"
},
"devDependencies": {
"@swc/core": "^1.3.101",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.11",
"@types/node": "^12.12.31",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"lerna": "^8.0.1",
"prettier": "^3.1.1",
"swc": "^1.0.11",
"typescript": "^5.3.3"
},
"engines": {
"node": ">= 12"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": false,
"vueIndentScriptAndStyle": false,
"printWidth": 120
},
"jest": {
"collectCoverage": false,
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"roots": [
"test"
],
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
},
"testMatch": [
"**/*.spec.ts"
],
"testTimeout": 120000
}
}