-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.66 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": "@shardus/crypto-utils",
"version": "4.1.3",
"description": "Provides simple crypto functions, as used by the ULC Project.",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/**/*",
"src/**/*"
],
"scripts": {
"release": "np --no-tests --no-yarn --any-branch",
"test": "echo \"Error: no test specified\" && exit 1",
"check": "gts check",
"lint": "eslint './src/**/*.ts'",
"lint-windows": "eslint ./src/**/*.ts",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/shardus/shardus-crypto-utils"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"Aamir Syed",
"Derrick Farris"
],
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/shardus/shardus-crypto-utils/issues"
},
"homepage": "https://gitlab.com/shardus/shardus-crypto-utils#readme",
"dependencies": {
"@shardus/types": "1.2.8",
"buffer-xor": "2.0.2",
"fast-stable-stringify": "1.0.0",
"sodium-native": "3.3.0"
},
"devDependencies": {
"@types/buffer-xor": "2.0.0",
"@types/node": "18.16.1",
"gts": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-xss": "^0.1.12",
"np": "8.0.4",
"typescript": "4.5.5"
},
"overrides": {
"semver": "5.7.2 || 6.3.1 || 7.5.4"
},
"engines": {
"node": "18.16.1"
}
}