-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 963 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
{
"name" : "credit-cards",
"description": "Validate & extract metadata from credit cards.",
"version" : "1.0.1",
"main" : "lib/index.js",
"types" : "lib/index.d.ts",
"scripts" : {
"build" : "tsc -p . && tsc -p tsconfig-build.json",
"ci" : "npm run build && npm run test",
"prepublish": "npm run build",
"test" : "mocha test/"
},
"repository": {
"type": "git",
"url": "https://github.com/dxg/node-credit-cards.git"
},
"keywords": [
"credit", "card", "creditcards", "validate"
],
"author" : "Arek W <[email protected]>",
"license" : "MIT",
"dependencies": {
"luhn": "~2.4.1"
},
"devDependencies": {
"@types/node" : "~16.11.7",
"@types/mocha": "9.1.1",
"mocha" : "^10.0.0",
"should" : "^13.2.3",
"ts-node" : "~10.8.0",
"typescript" : "~4.7.2"
},
"bugs": {
"url" : "https://github.com/dxg/node-credit-cards/issues"
}
}