-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.64 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.64 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
{
"name": "@shardus/lib-crypto-utils",
"version": "4.3.3",
"description": "Provides simple crypto functions, as used by the Shardus Project.",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"build/**/*",
"src/**/*"
],
"scripts": {
"test": "jest",
"check": "gts check",
"lint": "eslint './src/**/*.ts'",
"lint-windows": "eslint ./src/**/*.ts",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"format-check": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\"",
"format-fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"release:prepatch": "npm run prepare && npm version prepatch --preid=prerelease && git push --follow-tags && npm publish --tag prerelease",
"release:preminor": "npm run prepare && npm version preminor --preid=prerelease && git push --follow-tags && npm publish --tag prerelease",
"release:premajor": "npm run prepare && npm version premajor --preid=prerelease && git push --follow-tags && npm publish --tag prerelease",
"release:prerelease": "npm run prepare && npm version prerelease --preid=prerelease && git push --follow-tags && npm publish --tag prerelease",
"release:patch": "npm run prepare && npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm run prepare && npm version minor && git push --follow-tags && npm publish",
"release:major": "npm run prepare && npm version major && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/shardus/lib-crypto-utils"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"Aamir Syed",
"Derrick Farris"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/shardus/lib-crypto-utils/issues"
},
"homepage": "https://github.com/shardus/lib-crypto-utils#readme",
"dependencies": {
"@shardus/lib-types": "1.4.4",
"buffer-xor": "2.0.2",
"fast-stable-stringify": "1.0.0",
"sodium-native": "4.3.1"
},
"devDependencies": {
"@types/buffer-xor": "2.0.0",
"@types/jest": "29.5.14",
"@types/node": "18.19.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-xss": "0.1.12",
"gts": "3.1.1",
"jest": "29.7.0",
"np": "8.0.4",
"ts-jest": "29.2.5",
"typescript": "4.5.5"
},
"overrides": {
"semver": "5.7.2 || 6.3.1 || 7.5.4"
},
"engines": {
"node": "20.19.3"
}
}