-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "ts-mock-imports",
"version": "1.3.16",
"description": "Intuitive mocking for Typescript class imports",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/EmandM/ts-mock-imports.git"
},
"keywords": [
"import",
"mock",
"stub",
"typescript",
"dependency",
"injection",
"di",
"require",
"test",
"sinon",
"node"
],
"author": "Emma McMillan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmandM/ts-mock-imports/issues"
},
"homepage": "https://github.com/EmandM/ts-mock-imports",
"peerDependencies": {
"sinon": ">= 4.1.2",
"typescript": ">=2.6.1"
},
"scripts": {
"dtslint": "dtslint test/types",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"unit-test": "mocha -r ts-node/register test/**/*.spec.ts",
"test": "npm run dtslint && npm run unit-test",
"compile": "rimraf lib && tsc -p src",
"build": "npm run compile"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/mocha": "^9.0.0",
"@types/sinon": "5.0.5",
"broken-ts-repro": "file:broken-ts-repro-1.0.0.tgz",
"chai": "^4.3.4",
"dtslint": "^3.4.2",
"eslint": "^8.57.0",
"mocha": "^9.1.3",
"rimraf": "^3.0.2",
"sinon": "^7.3.2",
"ts-node": "^8.3.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
}
}