-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 912 Bytes
/
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
{
"name": "@siddharth23/cypress-postgres",
"version": "1.1.2",
"description": "Query postgres db via Cypress",
"main": "cypress/plugins/index.js",
"repository": "https://github.com/siddharth23/cypress-postgres.git",
"author": "Siddharth Kala <[email protected]>",
"keywords": [
"cypress",
"cypress plugin",
"postgres"
],
"license": "MIT",
"devDependencies": {
"cypress": "4.12.1",
"cypress-wait-until": "1.7.1",
"cz-conventional-changelog": "3.2.0",
"start-server-and-test": "1.11.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"commit": "npx git-cz",
"cy:open": "cypress open",
"test": "npm run cy:run",
"cy:run": "cypress run"
},
"dependencies": {
"pg-promise": "10.5.8"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}