forked from pysunday/rs-reverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.56 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
{
"name": "rs-reverse",
"version": "1.6.0",
"description": "瑞数算法逆向,website reverse engineering",
"main": "main.js",
"directories": {
"test": "test"
},
"bin": {
"rs-reverse": "./main.js"
},
"scripts": {
"test": "jest ./test/",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand ./test/",
"release": "release-it"
},
"logLevel": "info",
"repository": {
"type": "git",
"url": "https://github.com/pysunday/rs-reverse"
},
"keywords": [
"rs",
"瑞数",
"瑞数算法逆向"
],
"files": [
"package.json",
"README.md",
"utils",
"main.js",
"test",
"src",
"example"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "pysunday",
"license": "ISC",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"log4js": "^6.9.1",
"module-alias": "^2.2.3",
"random-useragent": "^0.5.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"yargs": "^17.7.2"
},
"jest": {
"moduleNameMapper": {
"@/(.*)": "<rootDir>/$1",
"@utils/(.*)": "<rootDir>/utils/$1",
"@src/(.*)": "<rootDir>/src/$1"
}
},
"_moduleAliases": {
"@": ".",
"@src": "./src",
"@utils": "./utils"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"release-it": "^17.0.1"
},
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/pysunday/rs-reverse#readme",
"bugs": "https://github.com/pysunday/rs-reverse/issues"
}