forked from iambumblehead/esmock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.6 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
66
67
68
69
70
71
72
73
74
{
"name": "esmock",
"type": "module",
"version": "1.9.1",
"license": "ISC",
"readmeFilename": "README.md",
"description": "provides native ESM import mocking for unit tests",
"author": "chris <[email protected]>",
"exports": {
"types": "./src/esmock.d.ts",
"import": "./src/esmockLoader.js"
},
"repository": {
"type": "git",
"url": "https://github.com/iambumblehead/esmock.git"
},
"contributors": [
{
"name": "Swivelgames",
"email": "[email protected]"
}
],
"files": [
"src"
],
"keywords": [
"esm",
"es module",
"mjs",
"unit-test",
"esmock",
"import",
"module",
"loader",
"load",
"export",
"require",
"experimental",
"es6",
"dependency",
"injection",
"dependency injection",
"mock dependency",
"di",
"inject",
"swap",
"test",
"mock",
"ava",
"modules",
"mocking",
"proxyquire",
"rewire"
],
"dependencies": {
"resolvewithplus": "^0.8.5"
},
"devDependencies": {
"c8": "^7.12.0",
"eslint": "^8.20.0",
"eslint-plugin-markdown": "^3.0.0"
},
"scripts": {
"test:install": "cd tests && npm run install:all",
"test:all": "cd tests && npm run test:all",
"test:all-ci": "cd tests && npm run test:all-ci",
"test": "npm run test:all",
"test-ci": "npm run test:install && npm run test:all-ci",
"test-cover": "npm run test:install && c8 npm run test:all",
"lint": "eslint .",
"mini:pkg": "npm pkg delete scripts devDependencies",
"prepublishOnly": "npm run lint && npm run test-ci && npm run mini:pkg"
}
}