-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "coverty",
"version": "1.0.8",
"description": "HTTP client for API testing and fake data generator",
"main": "./dist/cjs/src/index.js",
"repository": {
"url": "https://github.com/alexandermontillarivera/coverty"
},
"types": "./types/index.d.ts",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"prepare": "npm run build",
"build": "tsc --project tsconfig.esm.json & tsc --module commonjs --project tsconfig.cjs.json"
},
"keywords": ["Testing", "http", "fake-data", "client-http", "Client http", "Nodejs Rest Testing"],
"author": "Alexander Montilla Rivera",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"vitest": "^0.27.1"
},
"exports": {
"default": "./dist/cjs/src/index.js",
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
}
}