-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "serverless-pg",
"version": "0.1.1",
"description": "A PostgreSQL client for Node.js serverless applications.",
"license": "MIT",
"repository": "evbots/serverless-pg",
"main": "lib/index.js",
"author": {
"name": "Evan Botello",
"email": "evan.botello@protonmail.com",
"url": "https://github.com/evbots"
},
"scripts": {
"lint": "eslint --config ./.eslintrc.src.js ./src",
"lint:tests": "eslint --config ./.eslintrc.tests.js ./tests",
"pretty": "prettier --write '{src,tests}/**/*.js'",
"format": "npm run lint && npm run lint:tests && npm run pretty",
"clean": "rm -rf lib",
"prebuild": "npm run clean",
"build": "webpack",
"test": "jest --config ./jest.config.js && jest 'index.spec.js' --config ./jest.compiled.config.js",
"test:build": "npm run build && npm run test",
"check": "npm run format && npm run test:build"
},
"keywords": [
"serverless",
"postgresql"
],
"dependencies": {
"pg": "7.12.1"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/preset-env": "7.6.2",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"eslint": "6.5.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsdoc": "15.11.0",
"jest": "24.9.0",
"jsdoc": "3.6.3",
"prettier": "1.18.2",
"webpack": "4.40.2",
"webpack-cli": "3.3.9",
"webpack-node-externals": "1.7.2"
}
}