-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "@goodtools/wiregasm",
"version": "1.6.1",
"description": "Packet Analyzer powered by Wireshark compiled for WebAssembly",
"source": "src/index.ts",
"main": "dist/main.js",
"types": "dist/types.d.ts",
"module": "dist/module.js",
"scripts": {
"dev": "parcel watch",
"build:emscripten": "docker run -it --rm -v $(pwd):/src okhalid/wiregasm-builder:latest ./build-lib.sh",
"build:emscripten-local": "./build-lib.sh",
"build": "parcel build && npm run copy-assets",
"copy-assets": "cp built/bin/wiregasm.* dist/",
"lint": "eslint src/ --fix",
"test": "jest --coverage",
"fix:prettier": "prettier \"src/**/*.ts\" --write"
},
"keywords": [
"pcap",
"packet",
"analyzer",
"wireshark",
"wasm"
],
"homepage": "https://github.com/good-tools/wiregasm",
"repository": {
"type": "git",
"url": "git+https://github.com/good-tools/wiregasm.git"
},
"license": "GPLV2",
"devDependencies": {
"@parcel/packager-ts": "^2.8.2",
"@parcel/transformer-typescript-types": "^2.8.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/pako": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"pako": "^2.1.0",
"parcel": "^2.8.2",
"prettier": "^2.8.2",
"ts-jest": "^29.0.3"
},
"jest": {
"preset": "ts-jest",
"coveragePathIgnorePatterns": [
"<rootDir>/built/bin"
]
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}