-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "box-js",
"version": "1.9.26",
"description": "A tool for studying JavaScript malware.",
"dependencies": {
"acorn": ">=8.8.0",
"xmldom": "*",
"columnify": "*",
"command-line-args": "^4.0.7",
"escodegen": "^1.9.1",
"global": "^4.4.0",
"iconv-lite": "^0.4.23",
"jschardet": "^1.6.0",
"jsdom": "^16.2.2",
"limiter": "^1.1.3",
"node-html-parser": "*",
"queue": "^4.4.2",
"sync-request": "^6.0.0",
"system-registry": "^1.0.0",
"uglify-es": "^3.3.9",
"uuid": "^3.2.1",
"vm2": ">=3.9.19",
"walk-sync": "^0.3.2"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^8.21.0",
"eslint-config-google": "*",
"mocha": "^10.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CapacitorSet/box-js.git"
},
"author": "CapacitorSet",
"license": "MIT",
"bugs": {
"url": "https://github.com/CapacitorSet/box-js/issues"
},
"homepage": "https://github.com/CapacitorSet/box-js#readme",
"bin": {
"box-js": "run.js",
"box-export": "integrations/export/export.js"
},
"scripts": {
"lint": "eslint run.js analyze.js test/ emulator/",
"test": "mocha test/"
}
}