-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.49 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
100
{
"name": "@trusona/webauthn",
"version": "1.6.5",
"description": "Trusona WebAuthn SDK",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/trusona/auth-cloud-webauthn-sdk.git"
},
"license": "MIT",
"keywords": [
"webauthn",
"trusona",
"passkeys",
"passkey"
],
"scripts": {
"build": "rm -rf build && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"standalone": "npm run build && npx browserify build/main/index.js -p esmify -s trusona | npx uglify-js > examples/simple-demo/trusona-webauthn.standalone.js",
"fix": "run-s fix:*",
"fix:lint": "npx ts-standard src/lib --fix",
"test": "run-s build jest test:*",
"jest": "jest --coverage src",
"test:lint": "npx ts-standard src/lib",
"unused:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
"check-cli": "run-s test diff-integration-tests check-integration-tests",
"check-integration-tests": "run-s check-integration-test:*",
"diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
"watch:build": "tsc -p tsconfig.json -w",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
"prepare-release": "run-s reset-hard test doc:html version doc:publish"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@github/webauthn-json": "^2.1.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@npmcli/package-json": "^5.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"babel-preset-env": "^1.7.0",
"browserify": "^17.0.0",
"cspell": "^8.14.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.9.1",
"eslint-config-love": "^63.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-tsdoc": "^0.3.0",
"esmify": "^2.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.0",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"ts-standard": "^12.0.2",
"typedoc": "^0.26.6",
"typescript": "^5.5.4",
"uglify-js": "^3.19.3"
},
"files": [
"build/main",
"build/module",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/trusona/auth-cloud-webauthn-sdk/issues"
},
"homepage": "https://github.com/trusona/auth-cloud-webauthn-sdk#readme",
"directories": {
"example": "examples"
},
"author": "Trusona"
}