-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.58 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.58 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
{
"author": "SiegeSailor",
"bin": {
"siegesailor-cryptography": "build/command.js"
},
"bugs": {
"url": "https://github.com/SiegeSailor/Cryptography/issues"
},
"dependencies": {
"chalk": "5.6.2",
"inquirer": "9.3.8",
"nanospinner": "1.2.2"
},
"description": "Provide a collection of cryptography functions and a CLI.",
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "14.18.0",
"conventional-changelog-conventionalcommits": "9.3.1",
"jest": "29.7.0",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"tsc-alias": "1.8.16",
"tsconfig-paths": "4.2.0",
"typescript": "6.0.2"
},
"engines": {
"node": ">= 14.18.0",
"npm": ">= 6.14.15"
},
"files": [
"./build/**/*"
],
"homepage": "https://github.com/SiegeSailor/Cryptography#readme",
"keywords": [
"command-line-tool",
"typescript",
"webassembly"
],
"license": "MIT",
"main": "./build/entry-point.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"types": "./build/entry-point.d.ts",
"exports": {
".": {
"types": "./build/entry-point.d.ts",
"default": "./build/entry-point.js"
},
"./package.json": "./package.json"
},
"name": "@siegesailor/cryptography",
"repository": {
"type": "git",
"url": "git+https://github.com/SiegeSailor/Cryptography.git"
},
"scripts": {
"build": "npm run build:wasm && npm run build:typescript && npm run build:wasm-assets",
"build:clean": "rm -rf ./build ./build-cache",
"build:typescript": "tsc && npx --no-install tsc-alias",
"build:wasm": "node ./scripts/compile-wasm.js",
"build:wasm-assets": "node ./scripts/copy-wasm.js",
"build:wasm:check": "node ./scripts/verify-wasm.js",
"build:wasm:strict": "WASM_STRICT=1 node ./scripts/compile-wasm.js",
"release": "npx --yes --package semantic-release@25.0.3 --package @semantic-release/commit-analyzer@13.0.1 --package @semantic-release/github@11.0.6 --package @semantic-release/npm@12.0.2 --package @semantic-release/release-notes-generator@14.1.0 semantic-release",
"start": "clear && ts-node -r tsconfig-paths/register ./source/command.ts",
"start:compiled": "node ./build/command.js",
"test": "npm run test:unit && npm run test:cli",
"test:cli": "node ./scripts/test-cli.js",
"test:cli:compiled": "CRYPTOGRAPHY_CLI_BUILD=1 node scripts/test-cli.js",
"test:compatibility": "npm run build && npm run test && npm run test:cli:compiled",
"test:coverage": "npm run test:unit -- --coverage",
"test:unit": "jest"
},
"version": "0.0.0"
}