-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 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
42
{
"name": "json.ot",
"version": "1.0.0",
"description": "The lib support json ot.",
"main": "src/index.ts",
"repository": "https://github.com/y-t99/json0.ts.git",
"author": "Itou Ng",
"license": "MIT",
"scripts": {
"build": "tsc && tsc-alias",
"test": "jest --coverage"
},
"dependencies": {
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.3",
"prettier": "2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"tsc-alias": "^1.8.2",
"typescript": "^4.9.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"src"
],
"coveragePathIgnorePatterns": ["dist/", "node_modules/"]
}
}