-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
38 lines (38 loc) · 987 Bytes
/
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
{
"name": "luhn",
"license": "MIT",
"version": "0.0.0-development",
"author": "James Eggers <[email protected]> (http://www.jamesreggers.com/)",
"description": "A validation module for browsers and Node.js to validate credit card numbers against the luhn algorithm.",
"homepage": "https://github.com/JamesEggers1/luhn",
"repository": {
"type": "git",
"url": "https://github.com/JamesEggers1/luhn.git"
},
"main": "./dist/luhn",
"types": "./dist/luhn.d.ts",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"test": "mocha tests/luhn-tests.js -R spec",
"semantic-release": "semantic-release"
},
"keywords": [
"credit-card",
"validation",
"luhn"
],
"bugs": {
"url": "https://github.com/JamesEggers1/luhn/issues"
},
"devDependencies": {
"mocha": "^10.2.0",
"semantic-release": "^21.0.5",
"should": "^5.0.1",
"tsup": "^7.0.0",
"typescript": "^5.1.3"
}
}