sql-dsl/package.json

68 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-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 .",
"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": {
2021-08-17 18:12:21 +00:00
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"c8": "^7.8.0",
2021-07-13 06:40:22 +00:00
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
2021-08-17 18:12:21 +00:00
"esbuild": "^0.12.20",
"esbuild-register": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-xo-space": "^0.29.0",
"rollup": "^2.56.2",
2021-07-11 11:04:04 +00:00
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5",
"uvu": "^0.5.1",
"watchlist": "^0.2.3"
}
}