forked from bendrucker/creditcards-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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": "creditcards-types",
"version": "2.2.0",
"description": "Card type definitions and methods for creditcards",
"main": "index.js",
"scripts": {
"test": "standard && tape test/*.js | tap-spec && tape binlist-test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bendrucker/creditcards-types.git"
},
"keywords": [
"credit",
"cards",
"validation"
],
"author": "Ben Drucker <bvdrucker@gmail.com> (http://www.bendrucker.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bendrucker/creditcards-types/issues"
},
"homepage": "https://github.com/bendrucker/creditcards-types",
"dependencies": {
"xtend": "~4.0.0"
},
"devDependencies": {
"cast-array": "~1.0.1",
"csv-parser": "~2.3.0",
"luhn-generator": "~0.5.1",
"pump": "~3.0.0",
"random-int": "~2.0.0",
"run-parallel": "~1.1.6",
"simple-get": "~3.0.3",
"standard": "^14.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.0.0"
},
"files": [
"*.js",
"types/"
],
"engines": {
"node": ">= 6"
}
}