-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@young-aviator-club/remote-data",
"source": "src/index.ts",
"version": "2.1.2",
"private": false,
"description": "Typesafe library for representation loadable state.",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.module.js"
},
"main": "dist/index.js",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/Young-Aviator-club/remote-data"
},
"scripts": {
"type-check": "tsc --noEmit --p tsconfig.build.json",
"build": "npm run clean && microbundle",
"test": "jest",
"test:coverage": "jest --collect-coverage --silent",
"test:watch": "jest --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --quiet",
"clean": "rimraf dist",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"files": [
"/dist",
"/package.json"
],
"keywords": [
"typescript",
"javascript",
"typesafe",
"remote-data",
"fp",
"state",
"data structures",
"fetch",
"types",
"react",
"redux",
"rtk",
"immer"
],
"author": "Kalagin Ivan",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"babel-jest": "^29.7.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.1.0",
"expect-type": "^0.17.0",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"prettier": "^3.0.3",
"prettier-plugin-jsdoc": "^1.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"engines": {
"npm": ">=8.0.0"
}
}