forked from launchql/pgsql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 990 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
39
{
"name": "pgsql-parser",
"version": "0.0.1",
"publishConfig": {
"access": "restricted"
},
"private": true,
"scripts": {
"commit": "git-cz",
"build": "lerna run prepare --parallel",
"bootstrap": "lerna bootstrap --use-workspaces",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore . --fix",
"pretest": "yarn lint",
"test:watch": "jest --watch",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@pyramation/babel-preset-env": "0.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "^27.5.1",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "27.5.1",
"lerna": "3.22.1",
"prettier": "2.1.2"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/pyramation/pgsql-parser"
}
}