-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.13 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
{
"name": "fk-crypto-web",
"version": "2.0.0",
"description": "FortKnoxsters encryption algorithms used in the web app. Kryptos is a cryptographic library wrapping and implementing the Web Cryptography API. Kryptos supports symmetric keys and asymmetric key pair generation, key derivation, key wrap/unwrap, encryption, decryption, signing and verification.",
"main": "./src/index.js",
"module": "./src/index.js",
"type": "module",
"scripts": {
"lint": "eslint src/**/*.js",
"test": "nyc ava --verbose --timeout=30s",
"test:watch": "nyc ava --verbose --watch --timeout=30s",
"eslint": "eslint src/**/*.js",
"coverage": "c8 --reporter=html --reporter=text ava --verbose --timeout=30s"
},
"lint-staged": {
"src/**/*.js": "eslint"
},
"ava": {
"files": [
"**/**.test.js"
],
"verbose": true,
"require": [
"@babel/register",
"./src/test/helpers/_setup-browser-env.js"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"author": "FortKnoxster",
"license": "Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0",
"homepage": "https://github.com/FortKnoxster/fk-crypto-web",
"keywords": [
"fortknoxster",
"webcrypto",
"crypto",
"security",
"encryption",
"end-to-end encryption"
],
"devDependencies": {
"@babel/register": "^7.24.6",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@peculiar/webcrypto": "^1.5.0",
"ava": "^6.1.3",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^7.0.0",
"babel-register": "^6.26.0",
"browser-env": "^3.3.0",
"c8": "^10.1.2",
"eslint": "^9.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"jsdoc": "^4.0.3",
"lint-staged": "^15.2.9",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"webcrypto-core": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}