-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "record-locator",
"version": "1.0.5",
"description": "A record locator is short, easy to read and pronounceable string. This module encodes integers into record locator strings and can decode them back into integers.",
"main": "index.js",
"scripts": {
"test": "mocha test/index.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -x wallaby.js --report text --print none --check-coverage -- -R spec",
"lint": "eslint index.js test/index.js"
},
"keywords": [
"record locator",
"document reference",
"confirmation number",
"reservation number",
"booking number",
"booking reference",
"booking code",
"record",
"locator"
],
"author": "DKHR Limited (https://dkhr.com)",
"contributors": [
{
"name": "Zeeshan Muhammad",
"email": "zeeshan@dkhr.com",
"url": "https://dkhr.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dkhr/record-locator.git"
},
"bugs": {
"url": "https://github.com/dkhr/record-locator/issues"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-xo": "^0.15.4",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"xo": "^0.16.0"
}
}