-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1001 Bytes
/
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
{
"name": "@abdulghani/promise-modal",
"version": "0.0.16",
"description": "react.js promise based modal",
"keywords": [
"react",
"reactjs",
"modal",
"promise based modal",
"promise",
"promise modal"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "build/index.js",
"scripts": {
"build": "rm -rf ./build && babel ./src --out-dir ./build --extensions \".ts,.tsx\" && tsc"
},
"repository": "https://github.com/abdulghani/promise-modal",
"author": "Abdul Ghani",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-preset-minify": "^0.5.1",
"typescript": "^3.9.3"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}