-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 1.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "cdigit",
"version": "4.0.2",
"description": "Collection of check digit algorithms implemented in JavaScript",
"type": "module",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"exports": "./lib/index.js",
"sideEffects": false,
"bin": {
"cdigit": "bin/cli.js"
},
"files": [
"LICENSE-APACHE",
"LICENSE-MIT",
"example.js",
"lib"
],
"scripts": {
"build": "tsc",
"doc": "typedoc ./src/index.ts --gitRevision \"v$npm_package_version\"",
"prebuild": "rm -rf ./lib",
"predoc": "rm -rf ./docs",
"prepare": "npm run build && npm run doc && npm run test",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LiosK/cdigit.git"
},
"keywords": [
"checkdigit",
"check digit algorithm",
"check character system",
"luhn",
"mod 10",
"verhoeff",
"damm",
"iso7064",
"iso/iec 7064",
"mod 11-2",
"mod 37-2",
"mod 97-10",
"mod 97",
"mod 661-26",
"mod 1271-36",
"mod 11,10",
"mod 27,26",
"mod 37,36",
"gtin",
"gtin-8",
"gtin-12",
"gtin-13",
"gtin-14",
"gs1",
"upc",
"upc-a",
"ean",
"ean-8",
"ean-13",
"jan",
"isbn-13"
],
"author": "LiosK <contact@mail.liosk.net>",
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/LiosK/cdigit/issues"
},
"homepage": "https://github.com/LiosK/cdigit#readme",
"directories": {
"bin": "bin",
"lib": "lib",
"test": "test"
},
"runkitExampleFilename": "example.js",
"dependencies": {
"commander": "^10.0.0"
},
"devDependencies": {
"mocha": "^10.4.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
}
}