-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "@dfinity/internet-identity-playwright",
"version": "0.0.4",
"description": "A Playwright library to simplify the integration of Internet Identity authentication in E2E tests.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity/internet-identity-playwright.git"
},
"bugs": {
"url": "https://github.com/dfinity/internet-identity-playwright"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"internet computer",
"internet-computer",
"ic",
"icp",
"dfinity",
"internet-identity",
"ii",
"playwright",
"e2e",
"test"
],
"homepage": "https://github.com/dfinity/internet-identity-playwright#readme",
"type": "module",
"main": "dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"format": "prettier . --write",
"format:check": "prettier --check .",
"ts-declaration": "tsc --emitDeclarationOnly --outDir dist/types",
"build": "tsc --noEmit && node rmdir.mjs && node esbuild.mjs && npm run ts-declaration",
"lint": "eslint --max-warnings 0 \"src/**/*\"",
"dev": "npm --prefix demo run dev",
"e2e": "NODE_ENV=development playwright test --grep-invert 'captcha'",
"e2e:ci": "playwright test --reporter=html --grep-invert 'captcha'",
"e2e:captcha": "NODE_ENV=development playwright test e2e/captcha.spec",
"e2e:captcha:ci": "playwright test --reporter=html e2e/captcha.spec"
},
"devDependencies": {
"@dfinity/eslint-config-oisy-wallet": "^0.0.6",
"@types/node": "^20.14.2",
"esbuild": "^0.23.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@playwright/test": "^1.44.1"
}
}