forked from kciter/react-barcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "react-barcode",
"version": "1.5.3",
"description": "React component to generate barcodes",
"keywords": [
"react",
"react-component",
"barcode"
],
"homepage": "http://github.com/kciter/react-barcode",
"main": "lib/react-barcode.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint src/ samples/demo.js",
"prepublish": "make clean && make all",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Lee Sun-Hyoup <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kciter/react-barcode.git"
},
"license": "ISC",
"files": [
"lib"
],
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"jsbarcode": "^3.8.0",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"babel-eslint": "^10.0.3",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"eslint": "^4.18.2",
"eslint-plugin-react": "^3.5.1",
"react": "^17.0.0",
"react-dom": "^17.0.0"
}
}