-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.2 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
{
"name": "@juit/lib-fetch-mock",
"version": "1.0.3",
"description": "Easy Mocking of Node.js' own `fetch`",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"build": "plug",
"coverage": "plug coverage",
"dev": "plug coverage -w src -w test",
"lint": "plug lint",
"test": "plug test",
"transpile": "plug transpile"
},
"author": "Juit Developers <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@plugjs/build": "^0.6.0",
"typescript": "^5.5.2"
},
"files": [
"*.md",
"dist/",
"src/"
],
"directories": {
"test": "test"
},
"homepage": "https://github.com/juitnow/juit-lib-fetch-mock#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/juitnow/juit-lib-fetch-mock.git"
},
"bugs": {
"url": "https://github.com/juitnow/juit-lib-fetch-mock/issues"
},
"keywords": [
"fetch",
"mock"
]
}