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
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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": "card-validator",
"version": "2.1.0",
"description": "A library for validating credit card fields",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:braintree/card-validator"
},
"homepage": "https://github.com/braintree/card-validator",
"scripts": {
"test": "gulp lint && mocha test/**/*.js",
"build": "gulp build"
},
"author": "",
"license": "MIT",
"devDependencies": {
"browserify": "^6.1.0",
"chai": "^2.1.2",
"del": "^1.1.0",
"gulp": "^3.8.8",
"gulp-eslint": "^0.14.0",
"gulp-rename": "^1.2.0",
"gulp-size": "^1.1.0",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^1.0.2",
"gulp-watch": "^0.6.8",
"karma": "^0.12.31",
"karma-browserify": "^4.0.0",
"karma-chai-sinon": "^0.1.4",
"karma-es5-shim": "0.0.4",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"mocha": "^2.2.1",
"phantomjs": "^1.9.16",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0",
"vinyl-source-stream": "^1.0.0"
},
"dependencies": {
"credit-card-type": "^4.0.0",
"lodash.assign": "^3.0.0",
"lodash.isnumber": "^3.0.1",
"lodash.isstring": "^3.0.1"
}
}