22 lines
692 B
JSON
22 lines
692 B
JSON
{
|
|
"author": "Orion Henry <orion@inkandswitch.com>",
|
|
"name": "automerge-backend-wasm",
|
|
"description": "wasm-bindgen bindings to the automerge-backend rust implementation",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "./index.js",
|
|
"scripts": {
|
|
"build": "rimraf pkg && wasm-pack build --target nodejs --out-name index",
|
|
"release": "rimraf pkg && wasm-pack build --target nodejs --out-name index --release",
|
|
"mocha": "yarn build && mocha --bail --full-trace",
|
|
"test": "cargo test && wasm-pack test --node"
|
|
},
|
|
"dependencies": {
|
|
"immutable": "^3.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^6.2.0",
|
|
"automerge":"^0.12.1",
|
|
"rimraf": "^2.6.3"
|
|
}
|
|
}
|