-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
87 lines (87 loc) · 2.29 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
{
"name": "wasmparser",
"version": "5.11.1",
"description": "Binary WebAssembly file parser.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"bin": {
"disassemble-wasm": "./disassemble-wasm.js"
},
"scripts": {
"build": "concurrently \"npm:build:cjs\" \"npm:build:esm\"",
"build:cjs": "tsc --module commonjs --outDir dist/cjs --target es5",
"build:esm": "tsc --module es2015 --moduleResolution node --outDir dist/esm --target es2015",
"lint": "eslint '**/*.ts' --quiet",
"prepare": "npm run build",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleNameMapper": {
"(.+/WasmParser).js": "$1.ts"
}
},
"author": "Yury Delendik <[email protected].",
"contributors": [
"Benedikt Meurer <[email protected]>",
"Kim Anh-Tran <[email protected]>",
"Z Nguyen-Huu <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wasdk/wasmparser.git"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"wabt": "1.0.32"
},
"dependencies": {
"@types/node": "^18.16.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}