-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.84 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
{
"name": "@bryopsida/crypto",
"version": "0.1.2",
"description": "A crypto library utilizing @bryopsida/key-store to protect data using data encryption keys",
"main": "lib/index.js",
"exports": "./lib/index.js",
"type": "module",
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"files": [
"lib"
],
"scripts": {
"prepack": "npm run build",
"build": "node_modules/typescript/bin/tsc --project ./",
"build:docs": "typedoc src/crypto.ts src/resolve.ts src/using.ts",
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --coverage --testPathPattern='test/.*\\.spec\\.ts'",
"lint": "eslint --ext .ts src/ test/ && prettier --check .",
"lint:fix": "eslint --ext .ts src/ test/ --fix && prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryopsida/crypto.git"
},
"keywords": [
"crypto",
"typescript",
"keystore",
"data-encryption-keys",
"node.js",
"minimal-dependencies"
],
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/bryopsida/crypto/issues"
},
"homepage": "https://github.com/bryopsida/crypto#readme",
"devDependencies": {
"@bryopsida/key-store": "^0.1.4",
"@jest/globals": "30.2.0",
"@types/jest": "^29.0.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.0.0",
"prettier": "2.8.8",
"standard": "^17.0.0",
"ts-jest": "29.x",
"ts-node": "^10.7.0",
"typedoc": "^0.28.0",
"typescript": "^5.0.0"
}
}