-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 933 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 933 Bytes
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
{
"name": "protodefc",
"version": "0.1.0",
"description": "ProtoDef implementation using protodefc",
"main": "index.js",
"dependencies": {
"readable-stream": "^2.3.1"
},
"engines": {
"node": ">=8.3"
},
"repository": "git@github.com:ProtoDef-io/node-protodefc.git",
"scripts": {
"test": "jest",
"lint": "standard *.js src/*.js src/**/*.js examples/*.js",
"build": "cd native/ && cargo build --target wasm32-unknown-unknown --release && cd ../ && mkdir -p dist/ && wasm-bindgen native/target/wasm32-unknown-unknown/release/protodefc_glue.wasm --out-dir dist/ --nodejs --no-typescript",
"optimize": "wasm-opt -Os -o dist/protodefc_glue_bg.wasm dist/protodefc_glue_bg.wasm",
"prepublish": "npm run build"
},
"author": "Romain Beaumont <romain.rom1@gmail.com> (<romain.rom1@gmail.com>)",
"license": "MIT",
"devDependencies": {
"jest": "^23.1.0",
"standard": "^11.0.1"
}
}