2021-07-11 11:04:04 +00:00
|
|
|
{
|
2021-07-11 14:05:27 +00:00
|
|
|
"name": "sql-dsl",
|
2021-08-17 18:16:50 +00:00
|
|
|
"version": "0.0.2",
|
2021-07-11 11:04:04 +00:00
|
|
|
"description": "SQL as template literal",
|
|
|
|
"author": "Reinaldy Rafli <aldy505@tutanota.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-07-11 14:05:27 +00:00
|
|
|
"url": "git+https://github.com/aldy505/sql-dsl.git"
|
2021-07-11 11:04:04 +00:00
|
|
|
},
|
|
|
|
"bugs": {
|
2021-07-11 14:05:27 +00:00
|
|
|
"url": "https://github.com/aldy505/sql-dsl/issues"
|
2021-07-11 11:04:04 +00:00
|
|
|
},
|
2021-07-11 14:05:27 +00:00
|
|
|
"homepage": "https://github.com/aldy505/sql-dsl#readme",
|
2021-07-11 11:04:04 +00:00
|
|
|
"main": "dist/index.cjs",
|
2021-08-17 18:12:21 +00:00
|
|
|
"module": "dist/index.mjs",
|
2021-07-11 11:04:04 +00:00
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
2021-08-17 18:12:21 +00:00
|
|
|
"import": "./dist/index.mjs",
|
2021-07-11 11:04:04 +00:00
|
|
|
"require": "./dist/index.cjs"
|
|
|
|
},
|
|
|
|
"./package.json": "./package.json",
|
|
|
|
"./*": "./*"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"README.md",
|
|
|
|
"LICENSE"
|
|
|
|
],
|
|
|
|
"directories": {
|
|
|
|
"lib": "./src",
|
2021-07-13 12:34:34 +00:00
|
|
|
"test": "./test",
|
|
|
|
"example": "./examples"
|
2021-07-11 11:04:04 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "rollup -c",
|
|
|
|
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
|
|
|
|
"lint:fix": "eslint --fix --ext .js,.ts --ignore-path .gitignore .",
|
2022-09-24 00:55:56 +00:00
|
|
|
"coverage": "c8 --reporter=text --reporter=lcov npm run uvu",
|
|
|
|
"uvu": "uvu -r esbuild-register",
|
|
|
|
"tdd": "uvu -r esbuild-register; watchlist src/ -- uvu -r esbuild-register",
|
|
|
|
"test": "npm run coverage"
|
2021-07-11 11:04:04 +00:00
|
|
|
},
|
2021-07-13 06:40:22 +00:00
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "cz-conventional-changelog"
|
|
|
|
}
|
|
|
|
},
|
2021-07-11 11:04:04 +00:00
|
|
|
"devDependencies": {
|
2022-09-24 00:53:12 +00:00
|
|
|
"@rollup/plugin-typescript": "^8.5.0",
|
|
|
|
"@types/node": "^18.7.19",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.38.0",
|
|
|
|
"@typescript-eslint/parser": "^5.38.0",
|
|
|
|
"c8": "^7.12.0",
|
|
|
|
"commitizen": "^4.2.5",
|
2021-07-13 06:40:22 +00:00
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
2022-09-24 00:53:12 +00:00
|
|
|
"esbuild": "^0.15.9",
|
|
|
|
"esbuild-register": "^3.3.3",
|
|
|
|
"eslint": "^8.24.0",
|
|
|
|
"eslint-config-xo-space": "^0.33.0",
|
|
|
|
"rollup": "^2.79.1",
|
|
|
|
"typescript": "^4.8.3",
|
|
|
|
"uvu": "^0.5.6",
|
|
|
|
"watchlist": "^0.3.1"
|
2021-07-11 11:04:04 +00:00
|
|
|
}
|
2022-09-24 00:55:56 +00:00
|
|
|
}
|