-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
{
"name": "sql-template-strings",
"version": "2.2.2",
"description": "ES6 tagged template strings for prepared statements with mysql and postgres",
"main": "index.js",
"files": [
"index.d.ts",
"index.js",
"LICENSE.txt",
"README.md"
],
"typings": "index.d.ts",
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/felixfbecker/node-sql-template-strings"
},
"scripts": {
"lint": "eslint index.js test && npm run prettier",
"prettier": "prettier --write --list-different '**/*.{js?(on),.d.ts}'",
"test": "mocha \"test/**/*.js\" --exit",
"cover": "nyc --all mocha \"test/**/*.js\" --exit",
"typedoc": "typedoc --module es2015 --target es2015 --includeDeclarations --excludeExternals --mode file --readme none --out typedoc index.d.ts",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg"
},
"keywords": [
"mysql",
"mysql2",
"postgres",
"pg",
"prepared",
"statements",
"placeholder",
"es6",
"tagged",
"template",
"strings"
],
"author": "Felix Becker",
"license": "ISC",
"devDependencies": {
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.8.0",
"husky": "^0.14.1",
"mocha": "^5.0.0",
"mysql": "^2.12.0",
"mysql2": "^1.1.2",
"nyc": "^12.0.0",
"pg": "^7.1.0",
"prettier": "1.13.3",
"semantic-release": "^15.0.0",
"sequelize": "^4.0.0",
"typedoc": "^0.11.0",
"validate-commit-msg": "^2.12.2"
},
"nyc": {
"include": [
"index.js"
],
"exclude": [
"test/**/*.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}