forked from donmccurdy/zstddec-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "zstddec",
"version": "0.0.2",
"description": "ZSTD (Zstandard) decoder for Web and Node.js, using WebAssembly",
"repository": "github:donmccurdy/zstddec",
"main": "dist/zstddec.js",
"module": "dist/zstddec.modern.js",
"source": "zstddec.ts",
"types": "dist/zstddec.d.ts",
"scripts": {
"dist": "microbundle --format modern,cjs",
"watch": "microbundle watch --format modern,cjs",
"test": "npm run test:node && npm run test:browser",
"test:node": "tape *.test.js | tap-spec",
"test:browser": "browserify *.test.js | tape-run | tap-spec",
"preversion": "npm run dist && npm run test",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"zstd",
"zstandard",
"compression"
],
"author": "Don McCurdy <[email protected]>",
"license": "MIT AND BSD-3-Clause",
"devDependencies": {
"browserify": "^16.5.1",
"microbundle": "^0.12.3",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"tape-run": "^8.0.0"
},
"files": [
"dist/",
"*.ts",
"README.md",
"package.json",
"package-lock.json"
]
}