mirror of
https://github.com/fluencelabs/assemblyscript-dice
synced 2025-04-24 07:32:13 +00:00
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"name": "assemblyscript-helloworld",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"asbuild:optimized": "asc assembly/index.ts -b build/optimized.wasm -t build/optimized.wat --use abort='' --sourceMap --validate",
|
|
"asbuild": "npm run asbuild:optimized",
|
|
"asbuild:test": "npm run asbuild:test:roundtrip",
|
|
"asbuild:test:roundtrip": "npx asc tests/assembly/roundtrip.spec.as.ts -b tests/build/roundtrip.wasm -t tests/build/roundtrip.wat --validate --sourceMap --importMemory",
|
|
"test": "npm run asbuild:test && ava -v --serial"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/node": "^10.12.3",
|
|
"assemblyscript": "AssemblyScript/assemblyscript",
|
|
"ava": "1.0.0-rc.1",
|
|
"ts-node": "^7.0.1",
|
|
"typedoc": "^0.13.0",
|
|
"typescript": "^3.1.6"
|
|
},
|
|
"dependencies": {
|
|
"bignum": "github:MaxGraey/bignum.wasm",
|
|
"assemblyscript-json": "github:fluencelabs/assemblyscript-json",
|
|
"typescript-collections": "github:fluencelabs/typescript-collections",
|
|
"crypto-ts": "github:hmoog/crypto-ts"
|
|
},
|
|
"ava": {
|
|
"compileEnhancements": true,
|
|
"extensions": [
|
|
"ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register/transpile-only"
|
|
],
|
|
"files": [
|
|
"tests/**/*.spec.ts"
|
|
]
|
|
}
|
|
}
|