forked from DanielRamosAcosta/tepper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.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
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
76
77
78
{
"name": "tepper",
"version": "1.0.0",
"description": "Modern library for testing HTTP servers",
"main": "dist/tepper.js",
"engines": {
"node": ">= 12.13.0"
},
"homepage": "https://github.com/DanielRamosAcosta/tepper",
"repository": "https://github.com/DanielRamosAcosta/tepper",
"author": "Daniel Ramos <danielramosacosta@hotmail.com>",
"contributors": [
"Daniel Ramos <danielramosacosta@hotmail.com>",
"Aitor Alonso <aitor@aalonso.dev>"
],
"license": "MIT",
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p ./tsconfig.build.json",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --ext .ts --fix ./src",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.18.13",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-modules-commonjs": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@types/cookie-parser": "1.4.3",
"@types/express": "4.17.13",
"@types/jest": "28.1.8",
"@types/mime-types": "2.1.1",
"@types/multer": "1.4.7",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"babel-jest": "28.1.3",
"cookie-parser": "1.4.6",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.1",
"express": "4.18.1",
"jest": "28.1.3",
"multer": "1.4.4",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typescript": "4.7.4"
},
"jest": {
"testEnvironment": "node",
"moduleDirectories": [
"./node_modules",
"./src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
}
},
"dependencies": {
"@types/node-fetch": "2.6.2",
"form-data-encoder": "^1.7.1",
"formdata-node": "^4.3.2",
"mime-types": "^2.1.34",
"node-fetch": "^2.6.1"
}
}