-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.7 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "dare",
"version": "0.93.0",
"description": "Database to REST, REST to Database",
"type": "module",
"main": "./src/index.js",
"exports": {
".": {
"import": "./src/index.js",
"types": "./types/src/index.d.ts"
},
"./utils/*": {
"import": "./src/utils/*.js",
"types": "./types/src/utils/*.d.ts"
}
},
"types": "./types/src/index.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "is-ci || husky install",
"pretest": "npm run lint",
"types": "tsc -p ./tsconfig.json",
"prepublish": "npm run types",
"test": "npm run spec && ((c8 report --reporter=text-lcov | coveralls) || exit 0)",
"test:ci": "eslint ./ && c8 mocha test/specs/**/*.spec.js --reporter mocha-circleci-reporter && (c8 report --reporter=text-lcov | coveralls)",
"test:integration": "bash ./test/integration/run.sh",
"spec": "c8 mocha test/specs/**/*.spec.js",
"lint": "eslint ./ && npx prettier --check . && npx tsc -p ./tsconfig.json",
"prettier": "prettier --write --ignore-unknown .",
"lint-fix": "eslint --fix ./",
"lint-diff": "LIST=`git diff-index --cached --name-only --diff-filter=d HEAD | grep '.*\\.js$';`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"lint-diff-fix": "LIST=`git diff-index --name-only --diff-filter=d HEAD | grep '.*\\.js$';`; if [ \"$LIST\" ]; then eslint --fix $LIST; fi"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/5app/dare.git"
},
"keywords": [
"Database",
"MySQL",
"REST"
],
"author": "Andrew Dodson",
"license": "MIT",
"bugs": {
"url": "https://github.com/5app/dare/issues"
},
"homepage": "https://github.com/5app/dare#readme",
"files": [
"src/",
"types/"
],
"devDependencies": {
"@5app/prettier-config": "^1.0.4",
"@5app/semantic-release-config": "^1.1.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/mocha": "^10.0.10",
"c8": "^10.1.3",
"chai": "^4.5.0",
"chai-as-promised": "^8.0.1",
"coveralls": "^3.1.1",
"debug": "^4.4.0",
"eslint": "^8.57.1",
"eslint-config-5app": "^0.19.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^3.0.1",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"mocha": "^11.1.0",
"mocha-circleci-reporter": "0.0.3",
"mysql2": "3.12",
"pg": "^8.13.1",
"pg-query-stream": "^4.7.1",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"typescript": "^5.7.3"
},
"dependencies": {
"semver-compare": "^1.0.0",
"sql-template-tag": "^5.2.1",
"tricks": "^2.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": "@5app/prettier-config",
"release": {
"extends": "@5app/semantic-release-config"
}
}