-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "@artifact-project/webauthn",
"version": "1.0.0-rc.2",
"description": "WebAuthn — A set of tools for building an API and interacts with",
"keywords": [
"webauthn",
"security",
"authorization"
],
"author": "RubaXa <ibn@rubaxa.org>",
"license": "MIT",
"main": "webauthn.js",
"files": [
"*.js",
"*.js.map",
"*.d.ts"
],
"scripts": {
"test": "jest --coverage",
"start": "npm test -- --watchAll",
"build": "rollup --config && npm run dts-build",
"build-clean": "npm run ts-build-clean",
"git-clean": "git cliean -fd",
"dts-build": "dts-bundle-generator -o webauthn.d.ts webauthn.ts",
"dts-build-webauthn": "npm run dts-build-webauthn && npm run dts-build-allow",
"dts-build-allow": "dts-bundle-generator -o allow.d.ts allow.ts",
"prepublishOnly": "npm run test && npm run build",
"postpublish": "echo 'npm run git-clean?\n';"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.4.2",
"@types/jest": "^24.9.1",
"@types/node": "^12.20.55",
"dts-bundle-generator": "^3.3.1",
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^24.3.0",
"typescript": "^3.9.10",
"uglify-js": "^3.17.4"
},
"dependencies": {
"@types/webappsec-credential-management": "^0.5.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "\\.tests\\.ts$",
"transformIgnorePatterns": [],
"setupFilesAfterEnv": [
"<rootDir>/__jest__/extensions.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}