lion/packages-node/nodejs-helpers/package.json
2025-10-03 09:37:32 +02:00

61 lines
1.3 KiB
JSON

{
"name": "@lion/nodejs-helpers",
"version": "0.1.0",
"description": "Node.js helpers that could be useful to extenders of lion",
"license": "MIT",
"author": "ing-bank",
"homepage": "https://github.com/ing-bank/lion/",
"repository": {
"type": "git",
"url": "https://github.com/ing-bank/lion.git",
"directory": "packages-node/nodejs-helpers"
},
"type": "module",
"exports": {
".": {
"types": "./dist-types/src/index.d.ts",
"default": "./src/index.js"
}
},
"main": "index.js",
"files": [
"dist-types",
"src"
],
"scripts": {
"test": "npm run test:node",
"test:node": "mocha 'test-node/**/*.test.js'",
"test:watch": "npm run test:node -- --watch",
"types": "wireit"
},
"dependencies": {
"@babel/generator": "^7.24.5",
"@babel/parser": "^7.24.5",
"@babel/traverse": "^7.24.5",
"@babel/types": "^7.24.5",
"es-module-lexer": "^1.7.0",
"globby": "^14.0.1",
"prettier": "^3.2.5"
},
"keywords": [
"lion-tools",
"nodejs-helpers"
],
"publishConfig": {
"access": "public"
},
"wireit": {
"types": {
"command": "tsc --build --pretty",
"files": [
"src",
"test-node",
"types",
"tsconfig.json"
],
"output": [
"dist-types/**"
]
}
}
}