forked from braintree/card-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 770 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 770 Bytes
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
{
"name": "card-validator",
"version": "4.3.0",
"description": "A library for validating credit card fields",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:braintree/card-validator"
},
"homepage": "https://github.com/braintree/card-validator",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && mocha test/**/*.js"
},
"author": "Braintree <code@getbraintree.com> (https://www.braintreepayments.com/)",
"license": "MIT",
"devDependencies": {
"chai": "^2.1.2",
"eslint": "2.7.0",
"eslint-config-braintree": "1.0.0",
"mocha": "^3.0.0",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0"
},
"dependencies": {
"credit-card-type": "github:maxmilhas-org/credit-card-type"
}
}