forked from brianc/node-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 787 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 787 Bytes
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
{
"author": "Atul <[email protected]>",
"name": "@atul898/node-sql",
"description": "sql builder, forked from https://github.com/brianc/node-sql since that package has gone stale, this is forked so we can keep it udpated, so 'npm audit' does not have any issue",
"version": "1.0.2",
"homepage": "https://github.com/atul898/node-sql",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/atul898/node-sql.git"
},
"main": "lib/",
"types": "lib/types.d.ts",
"scripts": {
"test": "mocha",
"lint": "jshint lib test",
"posttest": "jshint lib test"
},
"engines": {
"node": "*"
},
"dependencies": {
"sliced": "1.0.x",
"lodash": "4.17.x"
},
"devDependencies": {
"jshint": "*",
"mocha": "*"
}
}