-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
46
47
48
49
{
"name": "dasm",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"start": "node --trace-warnings index.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drazisil/dasm.git"
},
"keywords": [
"pe",
"coff",
"assembly",
"re"
],
"author": "Drazi Crendraven <drazisil@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/drazisil/dasm/issues"
},
"homepage": "https://github.com/drazisil/dasm#readme",
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@babel/preset-env": "7.29.0",
"@types/eslint": "9.6.1",
"@types/node": "24.12.0",
"@types/tap": "18.0.0",
"eslint": "9.39.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"jest": "29.7.0",
"jest-spec-reporter": "1.0.19",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
},
"dependencies": {
"sigdb": "3.0.1"
}
}