-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 954 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
39
40
41
{
"name": "phone-lk",
"version": "2.0.0",
"description": "NPM package to validate and reformat the Sri Lanka telephone number.",
"main": "index.js",
"scripts": {
"test": "jest --coverage && codecov --token='5ef52a0d-5773-40fd-96a8-19e0d547f000'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kushanshamika/phone-lk.git"
},
"keywords": [
"phonenumber",
"phone",
"number",
"validate",
"format",
"sri",
"lanka",
"lk"
],
"author": "Kushan Shamika",
"license": "MIT",
"bugs": {
"url": "https://github.com/kushanshamika/phone-lk/issues"
},
"homepage": "https://github.com/kushanshamika/phone-lk#readme",
"devDependencies": {
"codecov": "^3.7.0",
"jest": "^26.0.1",
"rewire": "^5.0.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}