-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "react-confirm-service",
"version": "1.3.0",
"description": "Service to show alerts and confirmations in react apps",
"author": "atheck",
"license": "MIT",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly --project ./src",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"update": "npx npm-check-updates -i",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"lint": "biome lint . && npx eslint ./src",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "7.28.0",
"@babel/core": "7.28.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-runtime": "7.28.0",
"@babel/preset-env": "7.28.0",
"@babel/preset-react": "7.27.1",
"@babel/preset-typescript": "7.27.1",
"@biomejs/biome": "2.1.1",
"@types/jest": "30.0.0",
"@types/react": "19.1.8",
"eslint": "9.30.1",
"eslint-config-heck": "7.1.1",
"jest": "30.0.4",
"semantic-release": "24.2.6",
"ts-jest": "29.4.0",
"tslib": "2.8.1",
"typescript": "5.8.3"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"homepage": "https://github.com/atheck/react-confirm-service",
"repository": {
"type": "git",
"url": "https://github.com/atheck/react-confirm-service.git"
},
"keywords": [
"react",
"alert",
"confirm",
"service"
],
"main": "dist/index.js",
"types": "dist/index.d.ts"
}