-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 KB
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
{
"name": "sql-template",
"version": "1.3.2",
"keywords": [
"pg",
"pgsql",
"sql",
"sql-string",
"sql-builder",
"query-builder",
"sql query",
"ES6 template string",
"prepared statement",
"Let's have a beer and talk in Paris"
],
"dependencies": {},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-ivs": "^4.0.0",
"expect.js": "^0.3.1",
"mocha": "^3.1.2",
"nyc": "^15.1.0"
},
"main": "./index.js",
"author": "François Leurent <131.code@leurent.email> (http://github.com/131/)",
"scripts": {
"preversion": "npm run eslint",
"eslint": "eslint .",
"mocha": "node node_modules/mocha/bin/_mocha -b",
"cover": "nyc mocha",
"test": "npm run eslint && npm run cover"
},
"description": "Template string (ES6) builder for SQL.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/131/sql-template.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/131/sql-template/issues"
},
"homepage": "https://github.com/131/sql-template#readme"
}