-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
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
{
"name": "reverse-engineering-online-toolkit",
"version": "1.0.15",
"description": "纯前端逆向工程在线工具箱 - A pure frontend reverse engineering online toolkit",
"main": "index.html",
"scripts": {
"serve": "npx serve -l 8080",
"lint": "eslint assets/js/**/*.js tools/**/*.js",
"lint:fix": "eslint assets/js/**/*.js tools/**/*.js --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Evil0ctal/Reverse-Engineering-Online-Toolkit.git"
},
"keywords": [
"reverse-engineering",
"online-tools",
"encoding",
"decoding",
"encryption",
"decryption",
"hashing",
"base64",
"md5",
"sha",
"aes",
"rsa",
"frontend"
],
"author": "Evil0ctal",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Evil0ctal/Reverse-Engineering-Online-Toolkit/issues"
},
"homepage": "https://reot.dev",
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"serve": "^14.2.1"
}
}