-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.29 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
{
"name": "catacli",
"version": "0.1.2",
"main": "./lib/main.js",
"types": "./lib/main.d.ts",
"license": "Apache-2.0",
"repository": "akito0107/catacli",
"author": {
"name": "Akito Ito",
"email": "akito0107@gmail.com"
},
"scripts": {
"test": "jest",
"lint": "eslint ./src/**/*.ts",
"fmt": "eslint --fix ./src/**/*/ts",
"build": "yarn run clean && tsc",
"clean": "rimraf ./lib/*"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"eslint": "7.32.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.5.1",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"ts-jest": "27.1.4",
"ts-node": "9.1.1",
"typescript": "4.9.5"
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"helper.ts"
]
},
"dependencies": {
"source-map-support": "^0.5.12"
}
}