-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.25 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
80
81
{
"name": "frida-js",
"version": "0.3.0",
"description": "Pure-JS bindings to control Frida from node.js & browsers.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"src/",
"scripts/"
],
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsc",
"prepack": "npm run build",
"pretest": "npm-run-all --parallel pretest:download-frida build",
"pretest:download-frida": "ts-node ./test/download-test-frida.ts",
"test": "npm-run-all test:node test:browser",
"test:node": "mocha -r ts-node/register 'test/**/*.spec.ts'",
"test:browser": "karma start",
"test:browser:dev": "CONTINUOUS_TEST=true npm run test:browser",
"test:browser:debug": "HEADFUL_TEST=true CONTINUOUS_TEST=true npm run test:browser"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/frida-js.git"
},
"keywords": [
"frida",
"pure",
"bindings",
"websocket",
"reverse-engineering",
"instrument",
"instrumentation",
"frida.re"
],
"author": "Tim Perry <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/httptoolkit/frida-js/issues"
},
"homepage": "https://github.com/httptoolkit/frida-js#readme",
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@types/chai": "^4.3.5",
"@types/long": "^4.0.2",
"@types/mocha": "^10.0.1",
"@types/semver": "^7.3.13",
"@types/ssri": "^7.1.1",
"chai": "^4.3.7",
"cross-fetch": "^3.1.5",
"esbuild": "^0.17.19",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-esbuild": "^2.2.5",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "^0.0.36",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
"semver": "^7.5.0",
"tmp-promise": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@httptoolkit/dbus-native": "^0.1.3",
"@httptoolkit/websocket-stream": "^6.0.1",
"isomorphic-ws": "^4.0.1",
"long": "^4.0.0",
"ssri": "^10.0.4",
"ws": "^8.17.0",
"xz-decompress": "^0.2.1"
}
}