-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 816 Bytes
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
{
"name": "@alexaltea/capstone-js",
"version": "5.0.9",
"description": "Capstone disassembler framework port for JavaScript",
"author": "Alexandro Sanchez Bach <alexaltea123@gmail.com>",
"license": "BSD-3-Clause",
"homepage": "https://alexaltea.github.io/capstone.js/",
"keywords": [
"capstone",
"disassembler",
"disassembly",
"wasm",
"webassembly",
"reverse-engineering"
],
"repository": {
"type": "git",
"url": "https://github.com/AlexAltea/capstone.js.git"
},
"main": "./dist/capstone.js",
"files": [
"dist/capstone.js",
"dist/capstone.wasm"
],
"scripts": {
"build": "python3 build.py",
"serve": "python3 -m http.server",
"prepack": "npm run build"
},
"bugs": {
"url": "https://github.com/AlexAltea/capstone.js/issues"
}
}