forked from FortKnoxster/fortknoxster-crypto-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.16 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.16 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
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
{
"name": "superdapp-crypto",
"version": "2.0.0",
"description": "A versatile cryptographic library designed for cross-platform compatibility, implementing the Web Cryptography API. It supports secure key generation, encryption, decryption, signing, and verification for modern web and server applications.",
"main": "./src/index.cjs",
"module": "./src/index.js",
"exports": {
".": {
"require": "./src/index.cjs",
"import": "./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-node-env.js"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"author": "SuperDapp",
"license": "Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0",
"homepage": "https://github.com/SuperDappAI/superdapp-crypto",
"keywords": [
"SuperDapp",
"webcrypto",
"crypto",
"security",
"encryption",
"end-to-end encryption"
],
"devDependencies": {
"@babel/register": "^7.25.9",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"ava": "^6.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^9.2.1",
"babel-plugin-istanbul": "^7.0.0",
"babel-register": "^6.26.0",
"browser-env": "^3.3.0",
"c8": "^10.1.3",
"eslint": "^9.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.2",
"husky": "^9.1.7",
"jsdoc": "^4.0.4",
"lint-staged": "^15.3.0",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"rimraf": "^4.4.0",
"uuid": "^9.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}