forked from atomic-testing/atomic-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 KB
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
{
"private": true,
"name": "development-environment",
"engines": {
"node": ">=18.16",
"pnpm": ">=7.3.0 <10"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext .ts,.tsx,.js .",
"format": "prettier --write .",
"types": "tsc --noEmit",
"typedoc": "typedoc --out typedocs",
"bumpVersion": "ts-node scripts/bumpVersion.ts"
},
"author": "Tianzhen Lin <tangent@usa.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atomic-testing/atomic-testing.git"
},
"devDependencies": {
"@swc/jest": ">=0.2.26",
"@types/jest": "^29.5.6",
"@types/node": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.0",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
},
"version": "0.39.0"
}