-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 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
{
"name": "react-event-bus",
"version": "1.0.0",
"description": "React specified event bus",
"author": "dkildar",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"repository": "https://github.com/dkildar/react-event-bus",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.3",
"@types/node": "18.0.0",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"eslint": "8.46.0",
"gh-pages": "5.0.0",
"microbundle-crl": "0.13.11",
"npm-run-all": "4.1.5",
"prettier": "3.0.0",
"react-scripts": "5.0.1",
"typescript": "5.1.6"
},
"files": [
"dist"
],
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"uuid": "^9.0.1"
}
}