-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "pgr",
"version": "0.3.0",
"description": "A wrapper for pg",
"main": "src/index.js",
"author": "Andre Azzolini (apazzolini)",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/apazzolini/pgr.git"
},
"license": "MIT",
"dependencies": {
"dedent": "0.7.0"
},
"peerDependencies": {
"pg": "^8.3.3",
"pg-format": "^1.0.4"
},
"scripts": {
"check": "yarn run lint && yarn run test",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint -c .eslintrc src",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "yarn run test --watch"
},
"devDependencies": {
"dotenv": "8.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"jest": "26.4.2",
"jest-environment-node": "^26.3.0",
"pg": "^8.3.3",
"pg-format": "^1.0.4",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"jest": {
"testEnvironment": "jest-environment-node",
"transform": {}
}
}