This repository was archived by the owner on Oct 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.39 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.39 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "refreshable-remote-data-ts",
"version": "0.1.1",
"author": "Peter Gassner",
"license": "MPL-2.0",
"main": "dist/index.js",
"module": "es6/index.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.es6.json",
"test": "npm run lint && npm run prettier && npm run jest",
"jest": "jest",
"lint": "eslint --ext ts --quiet --fix",
"lint-staged": "npx lint-staged",
"prettier": "prettier --list-different src/**/*.ts",
"prepublishOnly": "npm run test && npm run build",
"preversion": "if [ \"${npm_package_version#*-}\" = \"$npm_package_version\" ] ; then changelog-updater --check ; fi",
"version": "if [ \"${npm_package_version#*-}\" = \"$npm_package_version\" ] ; then changelog-updater && git add CHANGELOG.md ; fi"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"peerDependencies": {
"fp-ts": "^2.8.0",
"@devexperts/remote-data-ts": "^2.0.5"
},
"devDependencies": {
"@devexperts/remote-data-ts": "^2.0.5",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"changelog-updater": "^2.0.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"fp-ts": "^2.9.5",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"typescript": "^4.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grossbart/refreshable-remote-data-ts.git"
},
"bugs": {
"url": "https://github.com/grossbart/refreshable-remote-data-ts/issues"
},
"homepage": "https://github.com/grossbart/refreshable-remote-data-ts#readme",
"description": "Refresh strategies for the RemoteData type",
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming",
"fp-ts"
],
"keywords": [
"typescript",
"algebraic-data-types",
"remote-data",
"functional-programming",
"stale-while-revalidate"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.ts$",
"testPathIgnorePatterns": [
"/dist",
"/es6"
],
"moduleFileExtensions": [
"js",
"ts"
]
}
}