-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.41 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": "msw-expect",
"version": "3.2.0",
"description": "Assert on mocked requests with MSW & Jest.",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"build": "npm run build:types && npm run build:ts",
"build:ts": "babel -x .ts,.tsx src --out-dir dist",
"build:watch": "npm run build -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:types:watch": "npm run build:types -- --watch",
"test": "jest"
},
"keywords": [
"create-babel-typescript"
],
"homepage": "https://andersdjohnson.github.io/msw-expect/",
"repository": "AndersDJohnson/msw-expect",
"funding": "https://github.com/sponsors/AndersDJohnson",
"author": "Anders D. Johnson",
"license": "ISC",
"types": "dist/index.d.ts",
"files": [
"setup.js",
"dist",
"!dist/test"
],
"devDependencies": {
"@andersdjohnson/tsconfig": "^1.0.1",
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@types/node-fetch": "^2.5.7",
"jest": "^26.6.3",
"msw": "^1.2.1",
"node-fetch": "^2.6.1",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "4.6"
},
"dependencies": {
"@babel/runtime": "^7.12.5"
},
"peerDependencies": {
"msw": ">=0.44.0 <2"
}
}