-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.54 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
{
"name": "eventelo",
"version": "0.1.3",
"description": "Communicate React components using event-based hooks.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write src/**",
"lint": "eslint src/**",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Harasz/eventelo.git"
},
"keywords": [
"react",
"events",
"hook",
"observer",
"observable"
],
"author": "Jakub Sydor",
"license": "MIT",
"bugs": {
"url": "https://github.com/Harasz/eventelo/issues"
},
"homepage": "https://github.com/Harasz/eventelo#readme",
"devDependencies": {
"@testing-library/react-hooks": "5.0.3",
"@types/jest": "26.0.20",
"@types/react": "17.0.2",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"ts-jest": "26.5.1",
"typescript": "4.1.5"
},
"peerDependencies": {
"react": ">=16.8"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}