-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "hungry-fetch",
"version": "0.9.2",
"description": "A hungry fetch mock.",
"main": "./dist/hungry-fetch.umd.js",
"module": "./dist/hungry-fetch.module.js",
"exports": "./dist/hungry-fetch.modern.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle",
"clean": "rimraf dist coverage",
"lint": "eslint --ext .ts,.js src",
"prepare": "npm run clean && npm run build",
"test": "jest",
"test-coverage": "jest --coverage",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micromata/hungry-fetch.git"
},
"files": [
"dist",
"src",
"LICENSE"
],
"keywords": [
"fetch",
"mock",
"hungry",
"test"
],
"author": "Philipp Mandler <[email protected]> (http://github.com/phlmn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/micromata/hungry-fetch/issues"
},
"homepage": "https://github.com/micromata/hungry-fetch#readme",
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.6",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-jest": "^27.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.0",
"microbundle": "^0.13.3",
"np": "^7.6.3",
"rimraf": "^3.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"whatwg-fetch": "^3.6.2"
},
"jest": {
"setupFiles": [
"<rootDir>/jestSetup.ts"
],
"preset": "ts-jest",
"testEnvironment": "jsdom"
}
}