-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "airspy",
"version": "1.0.0",
"description": "AirDrop protocol sniffer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nowsecure/airspy.git"
},
"engines": {
"node": ">= 10.13"
},
"files": [
"/dist/"
],
"bin": {
"airspy": "./dist/bin/airspy.js"
},
"scripts": {
"clean": "rimraf build",
"prepare": "npm run build-app && npm --prefix ./lib/agent install ./lib/agent",
"build": "npm run build-app && npm run build-agent",
"build-app": "tsc -p tsconfig.release.json",
"build-app:watch": "tsc -w -p tsconfig.release.json",
"build-agent": "npm --prefix ./lib/agent run build",
"build-agent:watch": "npm --prefix ./lib/agent run build:watch",
"lint": "tslint -t stylish --project \"tsconfig.json\""
},
"devDependencies": {
"@types/node": "^12.7.1",
"@types/plist": "^3.0.2",
"@types/pretty-hrtime": "^1.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/split": "^1.0.0",
"bplist-parser": "^0.2.0",
"chalk": "^2.4.2",
"commander": "^3.0.0",
"frida": "^12.6.13",
"plist": "^3.0.1",
"pretty-hrtime": "^1.0.3",
"split": "^1.0.1"
}
}