-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "ips-disassembler",
"version": "1.0.0",
"description": "A repo to disassemble Kasada.io's virtual machine into an assembly like language.",
"main": "index.js",
"dependencies": {
"acorn": "^8.6.0",
"acorn-walk": "^8.2.0",
"chalk": "^2.4.2",
"color-convert": "^1.9.3",
"ansi-styles": "^3.2.1",
"arg": "^4.1.3",
"color-name": "^1.1.3",
"create-require": "^1.1.1",
"globals": "^11.12.0",
"escape-string-regexp": "^1.0.5",
"diff": "^4.0.2",
"make-error": "^1.3.6",
"has-flag": "^3.0.0",
"debug": "^4.3.2",
"js-tokens": "^4.0.0",
"jsesc": "^2.5.2",
"ms": "^2.1.2",
"source-map": "^0.5.7",
"to-fast-properties": "^2.0.0",
"typescript": "^4.4.4",
"ts-node": "^10.4.0",
"supports-color": "^5.5.0",
"yn": "^3.1.1"
},
"devDependencies": {},
"scripts": {
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umasii/ips-disassembler.git"
},
"author": "umasi",
"license": "MIT",
"bugs": {
"url": "https://github.com/umasii/ips-disassembler/issues"
},
"homepage": "https://github.com/umasii/ips-disassembler#readme"
}