-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
79 lines (79 loc) · 1.93 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
{
"name": "@corellium/corellium-api",
"version": "1.8.0",
"description": "Supported nodejs library for interacting with the Corellium service and VMs",
"main": "src/corellium.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run docs"
}
},
"scripts": {
"docs": "jsdoc -c .jsdocrc.js -d docs",
"lint": "eslint",
"lint-staged": "lint-staged",
"lint:fix": "eslint --fix",
"test": "npx nyc npx mocha",
"test:ci": "npx nyc npx mocha"
},
"author": "Corellium (https://www.corellium.com)",
"homepage": "https://corellium.github.io/corellium-api/index.html",
"dependencies": {
"cross-fetch": "^3.1.5",
"fast-stable-stringify": "^1.0.0",
"form-data": "^3.0.0",
"hkdf": "0.0.2",
"jszip": "^3.10.1",
"p-retry": "^2.0.0",
"p-timeout": "^3.2.0",
"split": "^1.0.1",
"uuid": "^3.3.2",
"websocket-stream": "^5.1.1",
"xhr2": "^0.2.0",
"yazl": "^2.5.1"
},
"devDependencies": {
"docdash": "^2.0.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-no-floating-promise": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.7",
"jsdoc": "^4.0.2",
"lint-staged": "^10.5.3",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"wtfnode": "^0.8.4"
},
"bin": {
"corellium-api": "src/corellium.js"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corellium/corellium-api.git"
},
"keywords": [
"corellium",
"reverse-engineering",
"virtual-machines",
"vm",
"android",
"ios",
"arm",
"arm64",
"frida"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/corellium/corellium-api/issues"
}
}