-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"name": "cjs-mock",
"version": "0.0.0-autorel",
"description": "NodeJS module mocking for CJS (CommonJS) modules for unit testing purposes.",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mhweiner/cjs-mock.git"
},
"scripts": {
"prepare": "npm run build",
"lint": "eslint ./ --ext .js,.ts",
"build": "rm -rf ./dist && tsc"
},
"homepage": "https://github.com/mhweiner/cjs-mock",
"keywords": [
"unit test",
"ts unit test",
"typescript unit test",
"unit-test",
"mock",
"mocking",
"typescript mocking",
"ts mock",
"proxyquire",
"ts proxyquire",
"typescript proxyquire",
"isolate",
"dependency mock",
"rewire"
],
"dependencies": {
"callsites": "3.1.0"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}