forked from wasdk/wasmparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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.2.0",
"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": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"concurrently": "^5.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"prettier": "^2.0.5",
"semantic-release": "^17.0.8",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5",
"wabt": "1.0.23"
},
"dependencies": {
"@types/node": "^14.0.13"
},
"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"
]
}
}