-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "redux-profiler",
"version": "1.0.10",
"description": "A Redux store enhancer which uses User Timing API to profile redux actions and time spent on notifying store listeners",
"main": "dist/redux-profiler.umd.js",
"module": "dist/redux-profiler.esm.js",
"files": [
"dist/*"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup --config",
"watch": "npm run build -- -w",
"format": "prettier --write **/*.{js,css,md}",
"lint:fix": "npm run lint -- --fix",
"test": "run-s lint test:sources",
"lint": "eslint --ext .js .",
"test:sources": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhovhannes/redux-profiler.git"
},
"keywords": [
"redux",
"store",
"profile",
"react",
"timing",
"performance",
"profiler"
],
"author": "Hovhannes Babayan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bhovhannes/redux-profiler/issues"
},
"homepage": "https://github.com/bhovhannes/redux-profiler#readme",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "7.26.0",
"@bhovhannes/shared-config": "0.0.1",
"@evilmartians/lefthook": "1.8.2",
"@jest/globals": "29.7.0",
"@rollup/plugin-babel": "6.0.4",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"jest": "29.7.0",
"npm-run-all2": "6.2.6",
"prettier": "3.3.3",
"rollup": "4.25.0"
}
}