-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
50
51
52
53
54
55
56
57
58
{
"name": "remote-data-ts",
"description": "Remote data type implemented in TS",
"homepage": "https://gillchristian.github.io/remote-data-ts",
"version": "2.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://www.github.com/gillchristian/remote-data-ts"
},
"author": "Christian Gill <gillchristiang@gmail.com>",
"license": "MIT",
"keywords": [
"typescript",
"remote-data",
"fetch",
"types"
],
"peerDependencies": {
"fp-ts": "^2.11.8"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -w --noEmit",
"prerelease": "yarn build",
"fmt": "prettier --write '**/*.{ts,json,md}'",
"fmt:changed": "pretty-quick",
"fmt:check": "prettier --check '**/*.{ts,json,md}'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"test": "jest --coverage",
"test:watch": "jest --watch",
"docs": "docs-ts",
"release": "np",
"spell": "cspell '**/*.*'",
"md": "markdown"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"cspell": "^5.5.2",
"docs-ts": "^0.6.10",
"eslint": "^7.27.0",
"fast-check": "^2.22.0",
"fp-ts": "^2.11.8",
"fp-ts-laws": "^0.3.0",
"jest": "^27.5.1",
"markdown-magic": "^2.0.0",
"np": "^7.6.0",
"prettier": "^2.5.1",
"prettier-plugin-jsdoc": "^0.3.13",
"pretty-quick": "^3.1.3",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}