-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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": "react-batch-tracker",
"version": "0.0.9",
"description": "Keep track of state manipulating events and batch them into a single callback function.",
"main": "lib/index.tsx",
"scripts": {
"test": "jest --maxWorkers=1",
"build": "bash scripts/build.sh",
"clean": "bash scripts/clean.sh",
"link": "bash scripts/link.sh",
"unlink": "bash scripts/delete-glob.sh",
"relink": "npm run unlink && npm run build && npm run link",
"publish": "bash scripts/clean.sh && bash scripts/build.sh && bash scripts/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthonwellsjo/react-batch-tracker.git"
},
"keywords": [
"react",
"batch",
"api",
"calls",
"state",
"tracker",
"autosave"
],
"author": "Carl Anthon Wellsjö",
"license": "ISC",
"bugs": {
"url": "https://github.com/anthonwellsjo/react-batch-tracker/issues"
},
"homepage": "https://github.com/anthonwellsjo/react-batch-tracker#readme",
"peerDependencies": {
"@types/react": "^18.0.18",
"react": "^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.2"
}
}