-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 3.53 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "sqlify",
"version": "2.5.2",
"description": "Yet another SQL query builder for Node.js",
"main": "dist/index.js",
"typings": "dist/typings/index.d.ts",
"scripts": {
"prepublishOnly": "ts-node accessories/prepublish-log.ts && npm run build",
"test": "ts-node accessories/test-log.ts && cross-env NODE_ENV=test mocha tests/*.ts --require ts-node/register --recursive --reporter spec",
"test-watch": "ts-node accessories/test-watch-log.ts && cross-env NODE_ENV=test mocha tests/ --compilers ts:ts-node/register,tsx:ts-node/register --recursive --reporter spec --watch",
"build": "ts-node accessories/building-log.ts && npm run clean-build && npm run lint && ts-node accessories/real-build-log.ts && npm run compile && npm run copy-assets",
"lint-noFix": "ts-node accessories/lint-noFix-log.ts && npm run prettier-noFix && npm run tslint-noFix",
"lint": "ts-node accessories/formatting-log.ts && npm run prettier && ts-node accessories/linting-log.ts && npm run tslint",
"test-in-gitlab-runner": "ts-node accessories/test-log.ts && cross-env NODE_APP_INSTANCE=test cross-env NODE_CONFIG_DIR=./src/config jest --forceExit",
"preCommit-msg": "ts-node accessories/pre-commit-log.ts",
"copy-assets": "gulp copy-assets",
"clean-build": "gulp clean-build",
"prettier-noFix": "prettier \"{src/**/*.*,typings/**/*.*,tests/**/*.*}\"",
"prettier": "prettier \"{src/**/*.*,typings/**/*.*,tests/**/*.*}\" --write",
"tslint-noFix": "tslint -c tslint.json -p tsconfig.json -t stylish 'src/**/*.ts'",
"tslint": "tslint -c tslint.json -p tsconfig.json -t stylish --fix 'src/**/*.ts'",
"compile": "tsc",
"rescope": "npm-scope-prefixer -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vajahath/sqlify.git"
},
"author": "Vajahath Ahmed <vajuoff.1@gmail.com> (http://twitter.com/vajahath7)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vajahath/sqlify/issues"
},
"homepage": "https://github.com/vajahath/sqlify#readme",
"dependencies": {
"squel": "^5.12.0"
},
"contributors": [
"Lakshmipriya Mukundan (https://github.com/lakshmipriyamukundan)"
],
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/del": "^3.0.0",
"@types/gulp": "^4.0.4",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.5",
"@vaju/npm-scope-prefixer": "^1.2.0",
"chai": "^4.1.0",
"concurrently": "^3.5.0",
"cross-env": "^5.0.1",
"del": "^3.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"lme": "^1.5.3",
"mocha": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.5.3",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"typescript": "^3.7.5"
},
"pre-commit": [
"preCommit-msg",
"lint-noFix"
],
"keywords": [
"sql",
"squel",
"postgres",
"mysql",
"database",
"query"
],
"greenkeeper": {
"ignore": [
"@types/chai",
"@types/del",
"@types/gulp",
"@types/mocha",
"@types/node",
"chai",
"concurrently",
"cross-env",
"del",
"gulp",
"gulp-cli",
"lme",
"mocha",
"pre-commit",
"prettier",
"ts-node",
"tslint",
"typescript"
]
}
}