forked from theninja/credit-card-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 823 Bytes
/
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
{
"name": "credit-card-validation",
"description": "Credit/debit card validation for browsers and Node.js, uses Luhn algo and pattern matching.",
"version": "1.0.0",
"author": "Jack Buckland <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/theninja/credit-card-validation"
},
"bugs": {
"url": "https://github.com/theninja/credit-card-validation/issues"
},
"demos": [
"example/index.html"
],
"keywords": [
"credit",
"card",
"validation",
"browser",
"luhn",
"javascript"
],
"main": "src/card.js",
"scripts": {
"test": "mocha -R spec tests/check"
},
"licenses": [
{
"name": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"mocha": "1.2.1"
}
}