-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "@postgresrest/node",
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.js",
"repository": "git@github.com:prest/prest-node.git",
"author": "Guilherme Diego <guilherme.albino.francisco@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel src -d dist --extensions .ts",
"tsc": "tsc --project tsconfig.prod.json --noEmit",
"lint": "eslint './src/**/*.ts' './tests/**/*.ts'",
"docs": "yarn typedoc --out docs src",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-jest": "^27.0.6",
"babel-plugin-root-import": "^6.6.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.3.2",
"typedoc": "^0.21.2",
"typescript": "^4.3.5"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}