-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "boleto.js",
"version": "1.1.4",
"description": "Renderizador de código de barras para boletos bancários",
"main": "lib/boleto.min.js",
"files": [
"/lib",
"/src"
],
"scripts": {
"build-dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint --cache src/ test/ *.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilhermearaujo/boleto.js.git"
},
"keywords": [
"boleto",
"código",
"barras",
"barcode"
],
"author": "Guilherme Araújo <[email protected]> (https://github.com/guilhermearaujo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/guilhermearaujo/boleto.js/issues"
},
"homepage": "https://github.com/guilhermearaujo/boleto.js#readme",
"dependencies": {
"xmlserializer": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}