forked from steplix/emv-qrcps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "steplix-emv-qrcps",
"version": "0.0.8",
"deprecated": false,
"description": "Project to generate QRCode in EMV specification formmat.",
"main": "index.js",
"homepage": "https://github.com/steplix/emv-qrcps#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/steplix/emv-qrcps.git"
},
"author": "Steplix Developers",
"license": "ISC",
"bugs": {
"url": "https://github.com/steplix/emv-qrcps/issues"
},
"bundleDependencies": false,
"dependencies": {
"crc": "^3.8.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"sinon": "^7.5.0"
},
"keywords": [
"EMV",
"QRCPS",
"QRcode",
"Payment"
],
"scripts": {
"lint": "node_modules/.bin/eslint qrcode test",
"lint-fix": "node_modules/.bin/eslint --fix qrcode test",
"test": "nyc --reporter=lcov --reporter=text-summary ./node_modules/.bin/mocha --recursive"
}
}