generated from denorg/starter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
egg.json
39 lines (39 loc) · 956 Bytes
/
egg.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
{
"$schema": "https://x.nest.land/[email protected]/src/schema.json",
"name": "scrypt",
"entry": "./mod.ts",
"description": "This is a wasm-based (using rust-crypto) implementation of scrypt key derivation function that doesn't require any privileges.",
"homepage": "https://github.com/denorg/scrypt",
"version": "4.4.4",
"releaseType": null,
"unstable": false,
"unlisted": false,
"files": [
"mod.ts",
"cli.ts",
"Cargo.toml",
"deno.jsonc",
"mod_test.ts",
"README.md",
"LICENSE",
"lib/*",
"lib/_wasm/src/*",
"lib/_wasm/Cargo.toml",
"lib/_wasm/LICENSE",
"lib/_wasm/README.md",
"lib/_wasm/scrypt_wasm.generated.js"
],
"ignore": [
".gitignore",
".vscode/**",
".releaserc.json",
"_config.yml",
"lib/_wasm/out/**/*",
"lib/_wasm/target/**/*",
"lib/_wasm/cargo.lock"
],
"checkFormat": false,
"checkTests": false,
"checkInstallation": false,
"check": true
}