-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.01 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": "handle-it",
"version": "2.0.0",
"description": "A Tiny wrapper around event subscribing",
"keywords": [
"events",
"trigger",
"event listeners",
"subscribe",
"unsubscribe",
"on",
"off"
],
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"author": "Romuald Duconseil <[email protected]> https://rduconseil.dev",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/makavelithadon/handle-it"
},
"bugs": {
"url": "https://github.com/makavelithadon/handle-it/issues"
},
"types": "./dist/index.d.ts",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"unpkg": "./dist/umd/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"scripts": {
"prebuild": "rm -rf ./dist && npm run type-check && npm run lint",
"type-check": "tsc --noEmit",
"build": "npm run prebuild && vite build",
"test": "jest --colors --verbose --coverage",
"lint": "eslint src/lib",
"format": "prettier ./src/lib/ --write",
"prepare": "husky install"
},
"devDependencies": {
"@testing-library/user-event": "^14.4.3",
"@types/eslint": "^8.4.10",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@testing-library/dom": "^8.19.1",
"@testing-library/jest-dom": "^5.16.5",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1"
}
}