-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "stats-api",
"version": "1.0.0",
"description": "A native stats API for https://smogon.com/stats",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc -p ./",
"lint": "eslint . --ext ts",
"test": "npm run lint && npm run build && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mia-pi-git/stats-api.git"
},
"author": "mia-pi-git",
"license": "ISC",
"dependencies": {
"eslint": "^7.32.0",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.4.2",
"jest": "^27.2.0",
"ts-jest": "^27.0.5"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageProvider": "v8",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/src/test/test-utils.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}