sql-dsl/package.json

67 lines
1.7 KiB
JSON
Raw Normal View History

2021-07-11 11:04:04 +00:00
{
2021-07-11 14:05:27 +00:00
"name": "sql-dsl",
2021-07-11 11:04:04 +00:00
"version": "0.0.1",
"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",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"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 .",
"coverage": "c8 --reporter=text --reporter=lcov yarn run uvu",
"uvu": "uvu -r esbuild-register test",
"tdd": "yarn -s uvu; watchlist src/ -- yarn -s uvu",
"test": "yarn run coverage"
},
2021-07-13 06:40:22 +00:00
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
2021-07-11 11:04:04 +00:00
"devDependencies": {
"@types/node": "^16.3.1",
2021-07-13 06:40:22 +00:00
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
2021-07-11 11:04:04 +00:00
"c8": "^7.7.3",
2021-07-13 06:40:22 +00:00
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
2021-07-11 11:04:04 +00:00
"esbuild-register": "^2.6.0",
"eslint": "^7.30.0",
"eslint-config-xo-space": "^0.28.0",
"rollup": "^2.53.1",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5",
"uvu": "^0.5.1",
"watchlist": "^0.2.3"
}
}