-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "@fpjs-incubator/nice-pg-sql-toolkit",
"version": "0.7.1",
"description": "Nice PG SQL toolkit. Loves SQL. Not an ORM.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/fingerprintjs/nice-pg-sql-toolkit",
"author": "FingerprintJS",
"license": "MIT",
"private": false,
"files": [
"dist/bin/migrate.js",
"dist/index.js",
"dist/index.d.ts",
"dist/migrator.js",
"dist/migrator.d.ts",
"src/index.ts",
"src/migrator.ts",
"README.md"
],
"dependencies": {
"pg": "^8.7.1"
},
"devDependencies": {
"@types/pg": "^8.6.3",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"scripts": {
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint --ext ts,tsx src/**/*",
"build": "tsc",
"test": "NODE_ENV=test jest",
"npm:release": "yarn publish --access public"
},
"bin": {
"nice-pg-migrate": "dist/bin/migrate.js"
}
}