-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "@nfen/webcrypto-ts",
"version": "0.1.13",
"description": "Enforced Webcrypto wrapper",
"keywords": [
"aes-cbc",
"aes-ctr",
"aes-gcm",
"aes-kw",
"aes",
"ecdh",
"ecdsa",
"elliptic-curve",
"hkdf",
"hmac",
"pbkdf",
"rsa-oaep",
"rsa-pkcs1",
"rsa-pss",
"rsa",
"sha256",
"sha384",
"sha512",
"webcrypto-api",
"webcrypto"
],
"types": "./lib/index.d.js",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"prepare": "npm run build",
"prebuild": "rm -rf lib",
"build": "tsc --build",
"watch": "tsc --watch",
"test": "jest",
"doc": "npx typedoc --theme oxide --options ./typedoc.json --entryPointStrategy expand --exclude '**/__tests__/*' --out docs src"
},
"author": "Neal Fennimore",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nealfennimore/webcrypto-ts.git"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@nfen/typedoc-theme-oxide": "^0.1.11",
"@types/jest": "^28.1.6",
"@types/webcrypto": "^0.0.28",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"ts-jest": "^28.0.7",
"typedoc": "^0.22.18",
"typescript": "^4.7.4"
}
}