-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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
{
"name": "mysql-query-placeholders",
"version": "0.2.2",
"description": "Build prepared statements from named parameters.",
"main": "build/mqp.js",
"keywords": [
"prepared",
"statement",
"named",
"parameter",
"query",
"object",
"sql",
"mysql"
],
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register '*spec.ts'",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run clean && npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"dev": "ts-node-dev -T --respawn node_modules/mocha/bin/mocha *.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricardo-dlc/mysql-query-placeholders.git"
},
"author": "ricardo-dlc",
"license": "ISC",
"bugs": {
"url": "https://github.com/ricardo-dlc/mysql-query-placeholders/issues"
},
"homepage": "https://github.com/ricardo-dlc/mysql-query-placeholders#readme",
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^10.0.0",
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"@types/node": "^13.13.15",
"chai": "^4.2.0",
"gts": "^3.0.1",
"husky": "^4.2.5",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run check",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"files": ["build/"]
}