generated from ptpaterson/typescript-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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": "faunadb-io-types",
"version": "0.1.5",
"description": "io-ts codecs and helpers for using with FaunaDB",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ptpaterson/faunadb-io-types"
},
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rimraf build/*",
"lint": "eslint .",
"postbuild": "prettier --write \"./build/**/*.ts\"",
"prebuild": "npm run clean",
"test": "jest --coverage",
"testw": "jest --watch"
},
"devDependencies": {
"@types/jest": "~25.2.1",
"@types/node": "^13.13.1",
"@typescript-eslint/eslint-plugin": "~2.32.0",
"@typescript-eslint/parser": "~2.32.0",
"dotenv": "^8.2.0",
"eslint": "~7.0.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.10.0",
"eslint-plugin-prettier": "^3.1.3",
"faunadb": "^2.14.1",
"fp-ts": "^2.6.1",
"io-ts": "^2.2.2",
"io-ts-types": "^0.5.6",
"jest": "~25.2.7",
"prettier": "~2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "~25.5.1",
"typescript": "~3.8.3"
},
"peerDependencies": {
"faunadb": "^2.14.1",
"fp-ts": "^2.6.1",
"io-ts": "^2.2.2",
"io-ts-types": "^0.5.6"
},
"license": "MIT"
}