-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
{
"name": "electron-mocks",
"version": "1.6.0",
"description": "Testing mocks for Electron",
"repository": {
"type": "git",
"url": "https://github.com/spaceagetv/electron-mocks"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"semantic-release": "semantic-release",
"test": "mocha -r ts-node/register 'test/**/*.test.?s'",
"coverage": "nyc npm run test",
"type-check": "tsc --noEmit"
},
"keywords": [
"electron",
"mocks",
"testing",
"unit testing",
"stubbing",
"spies",
"sinon"
],
"author": "Jeff Robbins",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@microsoft/api-documenter": "^7.26.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.10",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"electron": "^33.2.1",
"electron-mocks": "file:./",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"sinon": "^19.0.2"
},
"publishConfig": {
"access": "public"
}
}