-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.02 KB
/
package.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
{
"name": "private-id-web",
"version": "0.1.0",
"description": "<div align=\"center\">",
"main": "web/privateid.js",
"directories": {},
"dependencies": {},
"devDependencies": {
"babelify": "^10.0.0",
"wasmify": "^4.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"test": "cd src; cargo run --bin private-id-test",
"build": "wasm-pack build --release --no-typescript --target no-modules; npm run-script link-web",
"build-debug": "wasm-pack build --debug --no-typescript --target no-modules; npm run-script link-web",
"link-web": "cp pkg/privateid.js web/util/wasm_bindgen.js; cp pkg/privateid_bg.wasm web/bin/privateid.wasm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wyatt-howe/private-id-web.git"
},
"keywords": [],
"author": "Wyatt Howe",
"Contributors": [],
"license": "Apache",
"bugs": {
"url": "https://github.com/wyatt-howe/private-id-web/issues"
},
"homepage": "https://github.com/wyatt-howe/private-id-web#readme"
}