-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "nixify",
"version": "3.1.2",
"description": "Nixify is a tiny JavaScript HTTP client based on browser Fetch API.",
"type": "module",
"module": "@Nixify/index.js",
"types": "@Nixify/index.d.ts",
"scripts": {
"build": "tsup",
"test": "jest",
"test:watch": "jest --watch --cache --runInBand --verbose",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/FxOmar/Nixify.git"
},
"keywords": [
"http",
"fetch",
"promise"
],
"author": "Omar Chadidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/FxOmar/Nixify/issues"
},
"homepage": "https://github.com/FxOmar/Nixify#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"express": "^4.18.2",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"sideEffects": false,
"engines": {
"npm": ">=10",
"node": ">=18"
}
}