-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.25 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
{
"name": "electron-playwright-helpers",
"version": "0.0.0-development",
"description": "Helper functions for Electron end-to-end testing using Playwright",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": "https://github.com/spaceagetv/electron-playwright-helpers",
"homepage": "https://github.com/spaceagetv/electron-playwright-helpers#readme",
"scripts": {
"make": "npm run make:compile && npm run make:doc",
"make:compile": "rm -rf dist; tsc",
"make:doc": "npx jsdoc2md --template ./readme-template.hbs.md --files ./src/*.ts --configure ./jsdoc2md.json > ./README.md",
"lint": "npx eslint src/**/*.ts",
"lint:fix": "npx eslint src/**/*.ts --fix",
"prepublish": "npm run make",
"test": "cd example-project && npm run e2e",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"semantic-release": "semantic-release"
},
"keywords": [
"Electron",
"Playwright",
"Typescript",
"E2E",
"E2E Testing"
],
"author": "Jeff Robbins",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@playwright/test": "^1.48.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node12": "^1.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"conventional-changelog-conventionalcommits": "^5.0.0",
"electron": "^27.3.11",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^8.0.0",
"playwright-core": "^1.34.3",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@electron/asar": "^3.2.4"
},
"prettier": {
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"useTabs": false,
"endOfLine": "lf"
}
}