forked from brianc/node-sql
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 2.24 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
59
60
61
62
63
64
65
{
"author": {
"name": "Stefan Charsley",
"email": "[email protected]"
},
"name": "sql-ts",
"description": "SQL Builder",
"version": "7.1.0",
"homepage": "https://github.com/charsleysa/node-sql-ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/charsleysa/node-sql-ts.git"
},
"type": "module",
"exports": {
".": {
"import": "./dist/lib.js",
"require": "./dist/lib.cjs",
"types": "./dist/lib.d.ts"
}
},
"types": "./dist/lib.d.ts",
"scripts": {
"pretest": "eslint --ext .ts ./lib && eslint --ext .ts ./test && rollup -c && tsc -p ./test/tsconfig.json",
"test": "mocha",
"lint": "eslint --ext .ts ./lib && eslint --ext .ts ./test",
"build": "rollup -c",
"release:major": "npm run test && npm run build && npm version major -m \"chore: release\" && git push origin master --tags && npm publish",
"release:minor": "npm run test && npm run build && npm version minor -m \"chore: release\" && git push origin master --tags && npm publish",
"release:patch": "npm run test && npm run build && npm version patch -m \"chore: release\" && git push origin master --tags && npm publish"
},
"engines": {
"node": "^18 || ^20 || >=22"
},
"dependencies": {
"lodash": "^4.17.21",
"sliced": "~1.0.x"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.8",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsdoc": "^50.2.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^55.0.0",
"mocha": "^10.7.3",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"ts-node": "^10.9.2",
"typescript": "~5.5.0"
},
"mocha": {
"reporter": "dot",
"ui": "tdd",
"watch-extensions": "js",
"spec": "spec/**/*.js"
}
}