-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 739 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 739 Bytes
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
{
"name": "react-use-modal",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel src -d dist --watch",
"build": "rm -rf dist && babel src -d dist",
"prepublish": "npm run build"
},
"keywords": [
"react",
"modal"
],
"author": "SitongLu",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"react": "^16.8.1",
"react-dom": "^16.8.1"
},
"peerDependencies": {
"react": ">=16.3",
"react-dom": ">=16.3"
}
}