-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
38 lines (38 loc) · 869 Bytes
/
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
{
"name": "puresql",
"version": "1.10.0",
"description": "SQL library for node.js inspired by Clojure's yesql",
"engines": {
"node": ">= 6.0.0"
},
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/neonerd/puresql.git"
},
"main": "index.js",
"scripts": {
"test": "nyc mocha --recursive --exit",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Andrej Sykora",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"co": "^4.6.0",
"coveralls": "^3.0.9",
"mocha": "^7.0.0",
"mssql": "^3.3.0",
"mysql": "^2.10.2",
"nyc": "^14.1.1",
"pg": "^4.5.3",
"sqlite3": "^4.1.0"
},
"dependencies": {
"pg-format": "^1.0.2"
}
}