-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.89 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 3.89 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "metrics-queue-react",
"version": "1.0.8",
"description": "React utilities for seemless integration with the MetricsQueue",
"main": "lib/metrics-queue-react.js",
"unpkg": "dist/metrics-queue-react.js",
"module": "es/metrics-queue-react.js",
"types": "types/index.d.ts",
"files": [
"dist",
"es",
"lib",
"src",
"types"
],
"sideEffects": false,
"scripts": {
"clean": "rimraf lib dist es coverage types",
"format": "prettier --write \"{src,test}/**/*.{js,ts,jsx,tsx}\" \"**/*.md\"",
"format:check": "prettier --list-different \"{src,test}/**/*.{js,ts,jsx,tsx}\" \"**/*.md\"",
"lint": "eslint --ext js,ts,jsx,tsx src",
"check-types": "tsc --noEmit",
"test": "jest --config jestconfig.json",
"test:watch": "jest --config jestconfig.json --watch",
"test:coverage": "jest --config jestconfig.json --coverage",
"build": "rollup -c",
"pretest": "npm run build",
"version:minor": "npm version minor",
"version:major": "npm version major",
"version:patch": "npm version patch",
"prepublishOnly": "npm run clean && npm run check-types && npm run format:check && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexfigliolia/metrics-queue-react.git"
},
"keywords": [
"task",
"mark",
"react",
"measure",
"event",
"emitter",
"metric",
"priority",
"listeners",
"subscribe",
"pubsub",
"performance",
"performance API"
],
"author": "Alex Figliolia",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexfigliolia/metrics-queue-react/issues"
},
"homepage": "https://github.com/alexfigliolia/metrics-queue-react#readme",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.12",
"@babel/eslint-parser": "^7.17.0",
"@babel/helper-module-imports": "^7.16.7",
"@babel/node": "^7.17.10",
"@babel/plugin-external-helpers": "^7.17.12",
"@babel/plugin-proposal-object-rest-spread": "^7.17.12",
"@babel/plugin-transform-runtime": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/register": "^7.17.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@testing-library/dom": "^8.13.0",
"@testing-library/react": "^13.2.0",
"@testing-library/react-hooks": "^8.0.0",
"@types/jest": "^27.5.1",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.34",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"babel-jest": "^28.1.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"glob": "^8.0.3",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"mkdir": "^0.0.2",
"prettier": "^2.6.2",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.73.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"scripts": "^0.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"metrics-queue": "^1.0.4",
"react": "^18.1.0"
},
"peerDependencies": {
"metrics-queue": "^1.0.4",
"react": "^16.8.0"
},
"browserslist": [
"defaults"
],
"npmName": "metrics-queue-react",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}