-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
51
52
53
{
"name": "node-pix",
"version": "1.5.2",
"description": "Generate and parse the pix payload for QRCodes",
"main": "./build/index.js",
"module": "./build/index.js",
"exports": "./build/index.js",
"esnext": "./build/index.js",
"repository": "https://github.com/pedrinholemes/pix-br.git",
"author": "Pedrinho Lemes <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "jest --watchAll",
"build": "npm-run-all build:**",
"build:clean": "rimraf build",
"build:tsc": "tsc",
"test": "jest",
"lint:eslint": "eslint --fix src/**/*.ts __tests__/**/*.ts",
"lint:prettier": "prettier --write **/*.{js,ts,json,md}",
"lint": "npm-run-all lint:**",
"prepublishOnly": "npm-run-all build",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/qrcode": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^6.0.0",
"jest": "^27.0.5",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"qrcode": "^1.5.0"
}
}