forked from omakoleg/toguru-client-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@autoscout24/toguru-client",
"version": "2.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage ",
"format:check": "prettier --list-different '*/**/*.{js,ts,tsx,json,md,scss,graphql,css}' || (echo \"Problem with code format. Please do yarn run prettier:fix\" && exit 1)",
"lint": "eslint --ext={ts,tsx} .",
"format:fix": "prettier --write '*/**/*.{js,ts,tsx,json,md,scss,graphql,css}' '*.{js,ts,tsx,json,md,scss,graphql,css}'"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"coverageDirectory": "./coverage/",
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"cobertura",
"html",
"text",
"text-summary"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"bn.js": "^5.0.0",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"jest": "^24.8.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"@types/bn.js": "^4.11.5",
"@types/cookie": "^0.3.3",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.21",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.17.1",
"node-mocks-http": "^1.8.0",
"prettier": "^1.19.1",
"semantic-release": "^12.4.1",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
}
}