mirror of
https://github.com/pysunday/sdenv.git
synced 2025-04-05 01:03:51 +08:00
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "sdenv",
|
|
"version": "0.2.2",
|
|
"description": "补环境框架",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "jest ./test/",
|
|
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand ./test/",
|
|
"install": "node-gyp rebuild",
|
|
"release": "release-it"
|
|
},
|
|
"logLevel": "debug",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/pysunday/sdenv"
|
|
},
|
|
"homepage": "https://github.com/pysunday/sdenv#readme",
|
|
"bugs": "https://github.com/pysunday/sdenv/issues",
|
|
"author": "pysunday",
|
|
"license": "BSD 3-Clause",
|
|
"dependencies": {
|
|
"bindings": "^1.5.0",
|
|
"canvas": "^2.11.2",
|
|
"jest": "^29.7.0",
|
|
"lodash": "^4.17.21",
|
|
"log4js": "^6.9.1",
|
|
"module-alias": "^2.2.3",
|
|
"node-addon-api": "^7.0.0",
|
|
"sdenv-extend": "^1.3.0",
|
|
"sdenv-jsdom": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@release-it/conventional-changelog": "^8.0.1",
|
|
"release-it": "^17.0.1"
|
|
},
|
|
"gypfile": true,
|
|
"jest": {
|
|
"moduleNameMapper": {
|
|
"@/(.*)": "<rootDir>/$1",
|
|
"@utils/(.*)": "<rootDir>/utils/$1",
|
|
"@handler/(.*)": "<rootDir>/handler/$1",
|
|
"@bin/(.*)": "<rootDir>/bin/$1"
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=20.10.0"
|
|
},
|
|
"_moduleAliases": {
|
|
"@": ".",
|
|
"@handler": "./handler",
|
|
"@utils": "./utils",
|
|
"@bin": "./bin",
|
|
"@jsdom": "sdenv-jsdom/lib/jsdom/"
|
|
}
|
|
}
|