-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "luhn-js",
"version": "1.1.2",
"description": "Validation and control key generation for credit cards (and more) using Luhn algorithm",
"main": "./src/luhn.js",
"types": "./src/luhn.d.ts",
"scripts": {
"lint": "node_modules/.bin/eslint .",
"test": "node_modules/.bin/mocha --recursive test",
"test-coverage": "node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EDumdum/luhn.git"
},
"keywords": [
"Luhn",
"ISO 7812",
"IEC 7812",
"ISO/IEC 7812",
"card validation",
"card",
"credit",
"validation",
"credit card",
"checksum",
"check digit"
],
"author": "E. Dumont",
"license": "MIT",
"bugs": {
"url": "https://github.com/EDumdum/luhn/issues"
},
"homepage": "https://github.com/EDumdum/luhn#readme",
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.18.2",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.2.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"istanbul": "0.4.5",
"mocha": "6.2.2"
}
}