-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.14 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.14 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
{
"scripts": {
"asbuild:untouched": "asc assembly/index.ts -b build/untouched.wasm -t build/untouched.wat --sourceMap --validate --debug",
"asbuild:optimized": "asc assembly/index.ts -b build/optimized.wasm -t build/optimized.wat --sourceMap --validate --optimize",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized"
},
"name": "subtle",
"description": "An AssemblyScript module for constant-time APIs. This module is heavily modelled after the [Go subtle package](https://golang.org/pkg/crypto/subtle/) and Dalek Cryptography's [Rust subtle crate](https://github.com/dalek-cryptography/subtle).",
"version": "0.0.1",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Mikerah/as-subtle.git"
},
"keywords": [
"cryptography",
"assemblyscript",
"\"constant",
"time\""
],
"author": "Mikerah",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mikerah/as-subtle/issues"
},
"homepage": "https://github.com/Mikerah/as-subtle#readme",
"devDependencies": {
"assemblyscript": "github:AssemblyScript/assemblyscript",
"typescript": "^3.6.4"
}
}