This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 231
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "squel",
"description": "SQL query string builder",
"version": "5.13.1",
"author": "Ramesh Nair <[email protected]> (http://www.hiddentao.com/)",
"contributors": [
"Ramesh Nair <[email protected]> (http://www.hiddentao.com/)",
"Sergej Brjuchanov <[email protected]>"
],
"dependencies": {},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"benchmark": "^2.1.4",
"chai": "1.5.x",
"coffee-script": "^1.10.0",
"growl": "^1.10.5",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.0",
"gulp-insert": "^0.5.0",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^2.2.0",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^1.5.3",
"gulp-umd": "^0.2.0",
"knex": "^0.14.6",
"load-grunt-tasks": "~0.1.0",
"mocha": "1.9.x",
"run-sequence": "^1.1.5",
"sinon": "1.6.x",
"time-grunt": "~0.1.1",
"uglify-js": "1.3.x",
"underscore": "1.4.x",
"yargs": "^4.7.1"
},
"keywords": [
"sql",
"database",
"rdbms"
],
"main": "dist/squel.js",
"types": "dist/squel.d.ts",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"test": "gulp",
"test-performance": "node performance/select.js",
"build": "gulp",
"prepublish": "npm run build"
},
"resolutions": {
"graceful-fs": "4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/hiddentao/squel.git"
},
"engines": {
"node": ">= 0.12.0"
}
}