-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 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
{
"name": "react-async-task",
"version": "0.1.0",
"description": "",
"cdn": "dist/index.iife.min.js",
"main": "dist/index.cjs",
"types": "types/index.d.ts",
"unpkg": "dist/index.iife.min.js",
"module": "dist/index.mjs",
"jsdelivr": "dist/index.iife.min.js",
"exports": {
".": [
{
"import": "./dist/index.mjs",
"default": "./dist/index.cjs"
},
"./dist/index.cjs"
]
},
"files": [
"dist/",
"types/"
],
"dependencies": {
"tslib": "^2.4.0"
},
"devDependencies": {
"@testing-library/react": "^13.2.0",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.5.1",
"@types/prettier": "^2.6.1",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"react": "^18.1.0",
"rollup": "^2.74.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^28.0.3",
"ts-jest-resolver": "^2.0.0",
"typescript": "^4.7.2"
},
"peerDependencies": {
"react": ">= 16.8.6"
},
"scripts": {
"test": "jest",
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.js",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VitorLuizC/react-async-task.git"
},
"keywords": [],
"author": {
"name": "Vitor Luiz Cavalcanti"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/VitorLuizC/react-async-task/issues"
},
"homepage": "https://github.com/VitorLuizC/react-async-task#readme"
}