-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.34 KB
/
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
32
33
34
35
36
37
38
39
40
41
{
"name": "@01/as-lzma",
"version": "1.0.2",
"description": "LZMA Decoder written in AssemblyScript",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"build",
"index.js",
"index.d.ts"
],
"scripts": {
"test": "jest",
"tdd": "jest --watch",
"build:untouched": "asc src/index.ts -b build/untouched.wasm -t build/untouched.wat --debug --sourceMap --importMemory --enable mutable-global",
"build:optimized": "asc src/index.ts -b build/optimized.wasm -t build/optimized.wat -O3 --noAssert --importMemory --enable mutable-global",
"build": "npm run build:untouched && npm run build:optimized",
"watch": "nodemon --exec 'npm run build:untouched' --watch src/lzma -e ts"
},
"repository": {
"type": "git",
"url": "https://github.com/01alchemist/AS-LZMA.git"
},
"keywords": [
"LZMA",
"data",
"compression",
"javascript",
"assemblyscript",
"webassembly"
],
"author": "Nidin Vinayakan",
"license": "MIT",
"bugs": {
"url": "https://github.com/01alchemist/AS-LZMA/issues"
},
"dependencies": {},
"devDependencies": {
"assemblyscript": "https://codeload.github.com/AssemblyScript/assemblyscript/tar.gz/ed97672a8cbd4ce8694bf1411ca7bd7a8734eb77"
}
}