-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.66 KB
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
{
"name": "privacypass-attester",
"version": "0.1.0",
"type": "module",
"main": "dist/worker.mjs",
"author": "Thibault Meunier <thibault@cloudflare.com>",
"contributors": [
"Armando Faz <armfazh@cloudflare.com>",
"Cefan Rubin <cefan@cloudflare.com>",
"Thibault Meunier <thibault@cloudflare.com>"
],
"license": "Apache-2.0",
"homepage": "https://github.com/cloudflare/privacypass-attester#readme",
"repository": "github:cloudflare/privacypass-attester",
"scripts": {
"build": "tsc && node scripts/cli.js build",
"deploy:production": "wrangler publish --no-bundle --env production",
"dev": "wrangler dev --env production",
"format": "prettier --write '*.{json,js}' 'scripts/*.{js,ts}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint src && prettier --check '*.{json,js}' 'scripts/*.{js,ts}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"test": "npm run build && node --experimental-vm-modules --no-warnings node_modules/.bin/jest"
},
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "4.20260122.0",
"@types/jest": "29.5.2",
"dotenv": "16.1.3",
"esbuild": "0.25.0",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-typescript": "3.0.0",
"git-rev-sync": "3.0.2",
"jest": "29.5.0",
"jest-environment-miniflare": "2.14.4",
"jest-runner-eslint": "2.0.0",
"prettier": "2.8.8",
"sade": "1.8.1",
"ts-jest": "29.1.0",
"wrangler": "3.114.17"
},
"dependencies": {
"@sentry/cli": "2.58.4",
"@sentry/integrations": "7.114.0",
"@sentry/types": "7.120.4",
"promjs": "0.4.2",
"toucan-js": "3.4.0",
"typescript": "5.0.4"
}
}