-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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": "bj",
"version": "1.0.0",
"main": "index.js",
"license": "UNLICENSED",
"scripts": {
"start:prod": "node dist/index",
"start": "ts-node src/index",
"prebuild": "rimraf dist",
"build": "tsc -b tsconfig.build.json",
"test": "jest"
},
"devDependencies": {
"rimraf": "^3.0.2",
"@types/jest": "^28.1.6",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"prettier": "^2.3.2",
"shelljs": "^0.8.5",
"source-map-support": "^0.5.20",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "specs",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}