-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
90 lines (90 loc) · 1.9 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "use-bus",
"version": "2.5.2",
"main": "index.js",
"module": "index.js",
"repository": "[email protected]:fabienjuif/use-bus.git",
"keywords": [
"react",
"hook",
"bus",
"eventbus",
"dispatch",
"share",
"actions",
"events",
"event",
"message",
"messages",
"nantes"
],
"author": "Fabien JUIF <[email protected]>",
"license": "MIT",
"types": "src/index.d.ts",
"scripts": {
"build": "pika build",
"pika-publish": "pika publish",
"version": "npm run build",
"lint": "eslint . --cache",
"test": "jest"
},
"peerDependencies": {
"react": "^16.8 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@testing-library/react-hooks": "^7.0.2",
"babel-jest": "^26.0.1",
"coveralls": "^3.1.1",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"jest": "^26.0.1",
"react": "^18.0.0",
"react-test-renderer": "^18.0.0"
},
"eslintConfig": {
"extends": "airbnb",
"ignorePatterns": "pkg/",
"rules": {
"semi": [
"error",
"never"
]
}
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-types"
]
]
}
}