-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "trendyol-api",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/myazarc/trendyol-api.git"
},
"bugs": {
"url": "https://github.com/myazarc/trendyol-api/issues"
},
"homepage": "https://github.com/myazarc/trendyol-api#readme",
"author": {
"name": "Mustafa Yazar",
"email": "[email protected]"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"axios-mock-adapter": "^1.20.0",
"concurrently": "^6.4.0",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"dependencies": {
"axios": "^0.24.0"
},
"scripts": {
"dev": "yarn compile && concurrently \"yarn compile:watch\" \"yarn start\"",
"start": "nodemon .",
"compile": "rimraf dist && tsc",
"compile:watch": "tsc -w",
"build": "yarn compile",
"prepublish": "yarn compile",
"test": "jest",
"coverage": "jest --coverage",
"test:badges": "yarn coverage && jest-coverage-badges && cp ./coverage/badge-statements.svg ./.badges/coverage.svg"
},
"jest": {
"testPathIgnorePatterns": [
"src/test.ts"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverage": true,
"coverageReporters": [
"json",
"json-summary",
"html"
]
}
}