-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 2.69 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@oneidentity/zstd-js",
"version": "1.0.3",
"description": "Browser side compression library from the official Zstandard library.",
"main": "lib/index.cjs.js",
"module": "lib/index.js",
"author": "Zsombor Szende - @szendezsombor",
"contributors": [
"Csaba Tamás - @tamascsaba",
"Gergely Szabó - @szaboge",
"László Zana - @zanalaci"
],
"browser": {
"fs": false,
"path": false
},
"scripts": {
"build": "rollup -c rollup.config.build.js",
"serve": "rollup -wc rollup.config.serve.js",
"test": "ts-node test/unit-test/zstd.test.ts",
"performance": "ts-node test/performance/time-test.ts",
"lint": "eslint ./src/**/*.ts*",
"prettier": "prettier --write \"**/*.{ts,js,json,html,md}\"",
"pretty-quick": "pretty-quick --staged",
"prettier-check": "prettylint \"**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"prepack": "bash src/bash/prepack.sh",
"postpack": "bash src/bash/postpack.sh",
"prepare": "husky install",
"combine": "./src/bash/combine.sh",
"compile": "./src/bash/compile.sh",
"setup": "yarn && yarn combine && yarn compile && yarn build"
},
"homepage": "https://github.com/OneIdentity/zstd-js",
"repository": {
"type": "git",
"url": "git+https://github.com/OneIdentity/zstd-js.git"
},
"bugs": {
"url": "https://github.com/OneIdentity/zstd-js/issues"
},
"keywords": [
"compress",
"decompress",
"wasm",
"zstandard",
"zstd"
],
"license": "SEE LICENSE IN LICENSE",
"files": [
"lib/**/*",
"wasm/**/*",
"asm/**/*",
"decompress/**/*",
"LICENSE",
"readme/**/*"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/d3": "^6.3.0",
"@types/ms": "^0.7.31",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"canvas": "^2.7.0",
"core-js": "^3.9.0",
"d3": "^6.6.0",
"d3-node": "^2.2.2",
"emscripten": "emscripten-core/emsdk.git#v2.0.14",
"eslint": "^7.20.0",
"husky": "^6.0.0",
"ms": "^2.1.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"prettylint": "^1.0.0",
"rollup": "^2.39.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-polyfill": "^3.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"text-encoding-polyfill": "^0.6.7",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "4.1.3",
"zstd": "facebook/zstd.git#v1.4.8"
},
"dependencies": {
"@types/emscripten": "^1.39.4"
}
}