-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.34 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
{
"name": "pg-sql",
"version": "1.1.0",
"description": "Create SQL for Postgres in a safe and composable fashion with the power of template strings.",
"author": "Caleb Meredith <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/calebmer/pg-sql#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/calebmer/pg-sql.git"
},
"bugs": {
"url": "https://github.com/calebmer/pg-sql/issues"
},
"keywords": [
"postgres",
"pg",
"sql",
"builder",
"safe",
"compose",
"composable",
"template",
"string",
"typescript"
],
"main": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"package.json",
"README.md",
"LICENSE",
"build"
],
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "rm -rf build && tsc",
"preversion": "npm run test && npm run build"
},
"dependencies": {
"pg-minify": "^0.4.1"
},
"devDependencies": {
"jest": "^18.0.0",
"typescript": "^2.1.4"
},
"jest": {
"transform": {
".ts": "<rootDir>/resources/jest-ts-transform.js"
},
"moduleFileExtensions": [
"js",
"ts"
],
"browser": false,
"testEnvironment": "node",
"testPathDirs": [
"<rootDir>/src"
],
"testRegex": "/__tests__/[^.]+-test.js$"
}
}