-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.08 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "cyanoacrylate",
"version": "1.2.3",
"description": "Toolkit for large-scale automated traffic analysis of mobile apps on Android and iOS.",
"bugs": "https://github.com/tweaselORG/cyanoacrylate/issues",
"repository": {
"type": "git",
"url": "https://github.com/tweaselORG/cyanoacrylate.git"
},
"license": "MIT",
"contributors": [
{
"name": "Benjamin Altpeter",
"email": "[email protected]",
"url": "https://benjamin-altpeter.de"
},
{
"name": "Lorenz Sieben",
"email": "[email protected]",
"url": "https://lorenz-sieben.com"
}
],
"type": "module",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"/dist",
"requirements.txt",
"/scripts",
"/src/ipcEventsAddon.py"
],
"scripts": {
"build": "yarn print-version && parcel build",
"fix": "yarn eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx --fix",
"postinstall": "node scripts/postinstall.js",
"lint": "tsc && eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx && git diff --check",
"prepack": "rm -rf .parcel-cache dist && yarn build && yarn typedoc",
"print-version": "echo \"// Shim to make the version available at runtime. Auto-generated, please ignore.\nexport const cyanoacrylateVersion = '$npm_package_version';\" > src/version.gen.ts",
"test": "echo 'TODO: No tests specified yet.'",
"postversion": "yarn print-version && git add src/version.gen.ts",
"watch": "parcel watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc && typedoc && git add docs"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx,css,scss,json}": [
"prettier --write"
],
"*.{ts,js,tsx,jsx}": [
"eslint --fix"
]
},
"prettier": "@baltpeter/prettier-config",
"dependencies": {
"@types/har-format": "^1.2.10",
"andromatic": "^1.1.1",
"appstraction": "1.5.0",
"autopy": "^1.1.1",
"cross-fetch": "^3.1.5",
"ctrlc-windows": "^2.1.0",
"execa": "^7.0.0",
"global-cache-dir": "^4.4.0",
"js-ini": "^1.6.0",
"p-timeout": "^6.1.1",
"tempy": "^3.0.0"
},
"devDependencies": {
"@baltpeter/eslint-config": "2.1.2",
"@baltpeter/prettier-config": "2.0.0",
"@baltpeter/tsconfig": "3.0.0",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "5.51.0",
"eslint": "8.34.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"husky": "4.3.7",
"lint-staged": "13.1.1",
"parcel": "2.8.3",
"prettier": "2.8.4",
"typedoc": "0.23.25",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "4.9.5"
},
"engines": {
"node": "~18"
}
}