-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.39 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": "sql-pg",
"version": "10.4.1",
"description": "Complex queries can be written with normal SQL, including the values needs to be bound and prefixed with the `sql` tag.",
"keywords": [
"node-postgres",
"nodejs",
"postgresql",
"query-builder",
"sql",
"tagged-template-literals"
],
"repository": "Sharaal/sql-pg",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bin": {
"migrate": "./bin/migrate.js",
"migrate_make": "./bin/migrate_make.js"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"prepare": "husky install",
"test": "npm run test:unit && npm run test:integration && npm run test:package",
"test:integration": "node ./bin/migrate && mocha --require intelli-espower-loader --recursive './test/integration/**/*.js'",
"test:package": "npm pack && tar -xzf *.tgz -C ./ && cp .env.example package/.env.example && cp .env package/.env && cp -r test package/test && cd package && mkdir -p migrations && npm i --ignore-scripts && npm run test:unit && npm run test:integration",
"test:unit": "nyc mocha --require intelli-espower-loader --recursive './test/unit/**/*.js'",
"version": "npx readme-releases && git add README.md"
},
"devDependencies": {
"dotenv-safe": "^8.2.0",
"espower-loader": "^1.2.2",
"intelli-espower-loader": "^1.1.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"pg": "^8.7.1",
"power-assert": "^1.6.1",
"readme-releases": "^1.1.1",
"sinon": "^11.1.2",
"standard": "^16.0.3"
},
"peerDependencies": {
"debug": "^4.3.2",
"dotenv-safe": "^8.2.0",
"pg": "^8.7.1"
},
"peerDependenciesMeta": {
"debug": {
"optional": true
},
"dotenv-safe": {
"optional": true
}
},
"directories": {
"test": "test"
},
"files": [
"bin/",
"src/",
"index.js",
"LICENSE",
"package.json",
"README.md",
"SECURITY.md"
],
"nyc": {
"include": [
"bin/",
"src/"
],
"exclude": [
"bin/templates/"
],
"all": true,
"reporter": [
"text",
"text-summary",
"lcov"
],
"report-dir": "./coverage"
},
"standard": {
"ignore": [
"docs/examples.js"
],
"env": [
"mocha"
]
},
"dependencies": {
"husky": "^7.0.2"
}
}