-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "luhn-alg",
"description": "Fastest implementation of the Luhn algorithm",
"version": "1.0.1",
"main": "index.js",
"author": {
"name": "Leo Di Donato",
"email": "leodidonato@gmail.com",
"url": "http://git.io/leodido"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/leodido/luhn.js.git"
},
"homepage": "http://github.com/leodido/luhn.js",
"bugs": {
"url": "http://github.com/leodido/luhn.js/issues"
},
"devDependencies": {
"babel": "^5.5.6",
"babel-eslint": "^3.1.15",
"babel-runtime": "^5.5.8",
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"chai": "^3.0.0",
"del": "^1.2.0",
"eslint": "^0.23.0",
"gulp": "gulpjs/gulp.git#4.0",
"gulp-bump": "^0.3.1",
"gulp-cli": "gulpjs/gulp-cli#4.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.5",
"mocha": "^2.2.5",
"phantomjs": "^1.9.17",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"zuul": "^3.0.0"
},
"keywords": [
"luhn algorithm",
"luhn formula",
"luhn check",
"luhn",
"check",
"credit card",
"credit card validation",
"payment card",
"credit card number",
"card number",
"checksum",
"PAN",
"modulus 10"
],
"scripts": {
"pretest": "./node_modules/.bin/mocha --compilers js:babel/register",
"test": "([ \"${SAUCELABS}\" = true ] && npm run testz) || true",
"testz": "./node_modules/.bin/zuul --no-coverage --concurrency 5 -- test.js",
"testp": "./node_modules/.bin/zuul --phantom -- test.js",
"testl": "./node_modules/.bin/zuul --local 8080 --open -- test.js",
"prepublish": "./node_modules/.bin/gulp production"
},
"engines": {
"node": ">=0.10"
}
}