-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "luhn-string",
"version": "1.2.3",
"description": "A library to generate strings that end with a checksum 'digit'. Digits in the string are in the range 0-9B-DF-HJ-NP-TV-XZ. All uppercase.",
"main": "luhn-string.js",
"scripts": {
"test": "mocha test",
"generate-docs": "./node_modules/.bin/jsdoc luhn-string.js --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eidetic-Limited/luhn-string.git"
},
"keywords": [
"luhn",
"string",
"random",
"checksum",
"valid",
"validate",
"invalid"
],
"author": "Ibrahim Lawal",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eidetic-Limited/luhn-string/issues"
},
"homepage": "https://github.com/Eidetic-Limited/luhn-string#readme",
"devDependencies": {
"chai": "^3.4.1",
"gulp": "^3.9.0",
"gulp-jshint": "^2.0.0",
"gulp-wrap-js": "^0.4.1",
"jsdoc": "^3.4.0",
"jshint": "^2.8.0",
"minami": "^1.1.1",
"mocha": "^2.3.4"
},
"dependencies": {}
}