-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "react-ipv4-input",
"version": "1.0.0",
"description": "Um componente para permitir a entrada de endereços IPV4 (Internet Protocol Version 4).",
"main": "index.js",
"files": [
"src/index.js",
"src/styles.scss"
],
"scripts": {
"build": "yarn prebuild && NODE_ENV=production webpack",
"prebuild": "mkdir -p ./lib && rm -rf ./lib/*",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emersoncavalcanti1972/react-ipv4-input.git"
},
"keywords": [
"react",
"react-component",
"input",
"ip",
"ipv4"
],
"author": "Emerson Cavalcanti",
"license": "MIT",
"bugs": {
"url": "https://github.com/emersoncavalcanti1972/react-ipv4-input/issues"
},
"homepage": "https://github.com/emersoncavalcanti1972/react-ipv4-input#readme",
"dependencies": {
"scss": "^0.2.4"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"babel-cli": "^6.26.0",
"babel-loader": "^9.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"node-sass": "^8.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
}
}