forked from vertica/vertica-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 993 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
38
{
"name": "vertica-nodejs",
"description": "Official vertica node.js client",
"main": "index.js",
"private": true,
"repository": "[email protected]:vertica/vertica-nodejs.git",
"author": "Vertica",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "yarn lerna exec yarn test",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"pretest": "yarn build",
"prepublish": "yarn build",
"lint": "eslint '*/**/*.{js,ts,tsx}'"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"lerna": "^3.19.0",
"prettier": "2.1.2",
"typescript": "^4.0.3"
},
"prettier": {
"semi": false,
"printWidth": 120,
"arrowParens": "always",
"trailingComma": "es5",
"singleQuote": true
}
}