-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.49 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
{
"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": "npx eslint --ext .ts,.tsx ./src",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "7.25.7",
"@babel/core": "7.25.8",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-runtime": "7.25.7",
"@babel/preset-env": "7.25.8",
"@babel/preset-react": "7.25.7",
"@babel/preset-typescript": "7.25.7",
"@types/jest": "29.5.13",
"@types/react": "18.3.11",
"eslint": "8.57.1",
"eslint-config-heck": "3.2.3",
"jest": "29.7.0",
"semantic-release": "24.1.2",
"ts-jest": "29.2.5",
"tslib": "2.7.0",
"typescript": "5.6.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"
}