-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.51 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ts-stubber",
"description": "Lazy Stubbing a TypeScript Class or Interface with any Mocking Framework for testing in Isolation",
"version": "1.0.19",
"author": "Shelly Goldblit",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:shellyDCMS/ts-stubber.git"
},
"homepage": "https://shellydcms.github.io/ts-stubber/modules.html",
"publishConfig": {
"access": "public"
},
"keywords": [
"testing",
"typescript",
"stubbing",
"mocking",
"interface stub",
"interface mock",
"typescript stub",
"stub"
],
"scripts": {
"build": "rollup --configPlugin @rollup/plugin-typescript --config rollup.config.ts",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "jest --coverage --ci --testResultsProcessor='./node_modules/jest-junit-reporter'",
"generate-md-docs": "typedoc --includeVersion --plugin typedoc-plugin-markdown --plugin typedoc-plugin-merge-modules --options typedoc.md.json",
"generate-docs": "typedoc --includeVersion --plugin typedoc-plugin-merge-modules --options typedoc.html.json",
"deploy": "gh-pages -d docs"
},
"dependencies": {},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai-subset": "^1.3.3",
"@types/chance": "^1.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.2.5",
"@types/sinon": "^17.0.3",
"chai-subset": "^1.6.0",
"chance": "^1.1.11",
"cypress": "^13.6.6",
"gh-pages": "^5.0.0",
"jest": "^29.7.0",
"jest-junit-reporter": "^1.1.0",
"mochawesome": "^7.1.3",
"rollup": "^4.9.6",
"rollup-plugin-dts-bundle-generator": "^1.4.0",
"sinon": "^17.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typedoc-plugin-merge-modules": "^5.0.1",
"typescript": "^4.6.4",
"yarn": "^1.22.19"
},
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"strict": true
},
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
]
}
},
"type": "module",
"include": [
"src"
],
"exclude": [
"**/*.spec.*"
],
"engines": {
"npm": ">=6.0.0",
"node": ">=18.18.2"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
]
}