mirror of
https://github.com/fluencelabs/signature-connector
synced 2025-03-16 03:00:52 +00:00
37 lines
1.2 KiB
JSON
37 lines
1.2 KiB
JSON
{
|
|
"name": "signature-connector",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"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",
|
|
"asbuild:test": "npm run asbuild:test:signature",
|
|
"asbuild:test:signature": "npx asc tests/assembly/signature-test.spec.as.ts -b tests/build/signature-test.wasm -t tests/build/signature-test.wat --validate --sourceMap --importMemory --debug",
|
|
"test": "npm run asbuild:test && ava -v --serial",
|
|
"test:ci": "npm run asbuild:test && ava --fail-fast --serial"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/node": "^10.12.3",
|
|
"assemblyscript": "AssemblyScript/assemblyscript",
|
|
"ts-node": "^7.0.1",
|
|
"ava": "^1.4.0",
|
|
"typescript": "^3.1.6"
|
|
},
|
|
"ava": {
|
|
"compileEnhancements": true,
|
|
"extensions": [
|
|
"ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register/transpile-only"
|
|
],
|
|
"files": [
|
|
"tests/**/*.spec.ts"
|
|
]
|
|
}
|
|
}
|