forked from g00dfe11ow/unveilr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
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
{
"name": "unveilr",
"author": "r3x5ur",
"version": "2.0.2",
"displayName": "一款小程序安全评估工具",
"keywords": [
"wxapkg",
"微信小程序",
"微信小游戏",
"unveilr",
"抖音小程序",
"抖音小游戏"
],
"description": "一款小程序安全评估工具,支持小程序的代码审计和发现敏感信息泄露、接口未授权等安全问题",
"main": "dist/index.js",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/r3x5ur/unveilr"
},
"bugs": "https://github.com/r3x5ur/unveilr/issues",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"eslint": "eslint --fix src --ext .ts --max-warnings=0",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only src/index.ts",
"run": "ts-node -r tsconfig-paths/register --transpile-only src/index.ts",
"ts-node": "ts-node -r tsconfig-paths/register --transpile-only",
"build": "npx rollup -c --bundleConfigAsCjs"
},
"dependencies": {
"@babel/core": "^7.21.3",
"chalk": "4.1.2",
"commander": "^10.0.0",
"crypto-js": "^4.1.1",
"css-tree": "^2.3.1",
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"observable-fns": "^0.6.1",
"prettier": "^2.8.8",
"threads": "^1.7.0",
"vm2": "^3.9.19",
"winston": "^3.8.2"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/babel__core": "^7.20.0",
"@types/babel__traverse": "^7.18.3",
"@types/crypto-js": "^4.1.1",
"@types/css-tree": "^2.3.1",
"@types/escodegen": "^0.0.7",
"@types/esprima": "^4.0.3",
"@types/node": "^18.14.4",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"babel-plugin-static-fs": "^3.0.0",
"compressing": "^1.8.0",
"eslint": "8.22.0",
"javascript-obfuscator": "^4.0.2",
"pkg": "^5.8.1",
"rollup": "^3.23.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-obfuscator": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.0.2"
}
}