-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "nodejs-test-mocking",
"version": "0.0.0",
"description": "Current state of affairs for mocking in Node.js tests",
"scripts": {
"test": "npm run test --workspaces"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silenceisgolden/nodejs-test-mocking.git"
},
"keywords": [
"nodejs",
"node",
"unit",
"test",
"testing"
],
"author": "AJ Klein <aj@logicallyabstract.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/silenceisgolden/nodejs-test-mocking/issues"
},
"homepage": "https://github.com/silenceisgolden/nodejs-test-mocking#readme",
"workspaces": [
"packages/cjs-javascript",
"packages/cjs-typescript",
"packages/cjs-typescript-esbuild"
],
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/sinon": "^10.0.11",
"chai": "^4.3.6",
"esbuild": "^0.14.47",
"esbuild-runner": "^2.2.1",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"sinon": "^14.0.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}