-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "@foxglove/wasm-bz2",
"version": "0.1.1",
"description": "Bzip2 decompression compiled to WebAssembly",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/foxglove/wasm-bz2.git"
},
"author": {
"name": "Foxglove",
"email": "[email protected]",
"url": "https://foxglove.dev/"
},
"main": "dist/index.js",
"files": [
"dist",
"src",
"wasm"
],
"scripts": {
"build:ts": "tsc -b",
"build:wasm": "./build.sh",
"prepack": "npm run build:ts && npm run build:wasm",
"clean": "tsc -b --clean",
"lint": "eslint --report-unused-disable-directives --fix .",
"lint:ci": "eslint --report-unused-disable-directives .",
"test": "jest"
},
"devDependencies": {
"@foxglove/eslint-plugin": "0.12.2",
"@foxglove/tsconfig": "1.0.0",
"@types/emscripten": "1.39.5",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"babel-plugin-transform-import-meta": "2.0.0",
"esbuild": "0.14.8",
"esbuild-jest": "0.5.0",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.6",
"jest-ts-webcompat-resolver": "1.0.0",
"prettier": "2.3.2",
"typescript": "4.3.5"
},
"dependencies": {
"tslib": "^2"
}
}