mirror of
https://github.com/pysunday/rs-reverse.git
synced 2025-04-05 00:09:17 +08:00
73 lines
1.6 KiB
JSON
73 lines
1.6 KiB
JSON
{
|
|
"name": "rs-reverse",
|
|
"version": "1.7.2",
|
|
"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",
|
|
"src",
|
|
"example"
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"author": "pysunday",
|
|
"license": "BSD 3-Clause",
|
|
"dependencies": {
|
|
"cheerio": "^1.0.0-rc.12",
|
|
"fs-extra": "^11.2.0",
|
|
"jest": "^29.7.0",
|
|
"lodash": "^4.17.21",
|
|
"log4js": "^6.9.1",
|
|
"module-alias": "^2.2.3",
|
|
"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"
|
|
}
|