-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1004 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
{
"name": "ui-debug",
"version": "1.0.3",
"description": "A React component that helps you reduce console log during debugging, displaying raw data without going through the rendering process.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/satoshiman/ui-debug.git"
},
"keywords": [
"debug",
"debugger",
"render",
"react"
],
"author": "satoshiman",
"license": "ISC",
"bugs": {
"url": "https://github.com/satoshiman/ui-debug/issues"
},
"homepage": "https://github.com/satoshiman/ui-debug#readme",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/preset-react": "^7.18.6",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2"
}
}