-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 863 Bytes
/
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
{
"name": "as-disposable",
"version": "0.1.2",
"description": "Object finalization for AssemblyScript made easy",
"main": "assembly/index.ts",
"type": "module",
"scripts": {
"test": "npm run compile:tests && node test",
"compile:tests": "asc assembly/test.ts --outFile build/test.wasm --use ASC_RTRACE=1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtenner/as-disposable.git"
},
"keywords": [
"wasm",
"assemblyscript",
"memory"
],
"author": "Joshua Tenner <tenner.joshua@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtenner/as-disposable/issues"
},
"homepage": "https://github.com/jtenner/as-disposable#readme",
"devDependencies": {
"@assemblyscript/loader": "^0.24.1",
"@assemblyscript/rtrace": "^0.24.1",
"assemblyscript": "^0.24.1"
}
}