-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
58 lines (58 loc) · 1.39 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
{
"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/"
}
}