-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "sepa-qr",
"version": "0.0.2",
"description": "Generate QR codes for SEPA payments",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test",
"test": "mocha",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smhg/sepa-qr-js.git"
},
"keywords": [
"sepa",
"qr"
],
"author": "Sam Hauglustaine",
"license": "MIT",
"bugs": {
"url": "https://github.com/smhg/sepa-qr-js/issues"
},
"homepage": "https://github.com/smhg/sepa-qr-js#readme",
"dependencies": {
"qr-image": "^3.2.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.2"
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
]
}