-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 953 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 953 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
31
32
{
"name": "type-sql",
"version": "0.1.0",
"description": "A type-safe SQL query builder in TypeScript with Postgres and MySQL bindings.",
"keywords": ["typesql", "type-sql", "type sql", "type-safe sql", "sql", "postgres", "postgresql", "mysql"],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "ggmod",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/* && tsc -v && tsc",
"test": "rm -rf dist/*; tsc -v; tsc; rm -rf build-test; cd test; tsc; cd ..; jasmine ./build-test/**/*.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ggmod/type-sql.git"
},
"devDependencies": {
"@types/debug": "0.0.29",
"@types/jasmine": "^2.2.34",
"@types/mysql": "0.0.30",
"@types/pg": "^6.1.34",
"jasmine": "^2.5.2",
"mysql": "^2.12.0",
"pg": "^6.1.0",
"typescript": "^2.1.*"
},
"dependencies": {
"debug": "^2.3.3"
}
}