forked from paypal/fullstack-phone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.04 KB
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": "fullstack-phone",
"version": "1.35.0",
"libphonenumber": "v8.10.6",
"description": "A dual-module phone number system with dynamic regional metadata",
"keywords": [
"libphonenumber",
"phone"
],
"repository": {
"type": "git",
"url": "https://github.com/paypal/fullstack-phone.git"
},
"author": "Daniel Bruhn <dwbruhn@gmail.com>",
"license": "Apache-2.0",
"contributors": [
"Nathan Hammond <github.com@nathanhammond.com> (http://www.nathanhammond.com/)",
"Theresa Khoo <tkhoo@paypal.com>",
"Diego Lagunas <dlagunas@paypal.com>",
"Reza Payami <rpayami@paypal.com>"
],
"engines": {
"node": ">=4.0.0"
},
"files": [
"client/",
"server/"
],
"scripts": {
"update": "./bin/update.sh",
"upgrade": "./bin/upgrade.sh",
"build": "./bin/build.sh",
"test": "mocha test/ -R dot"
},
"dependencies": {},
"devDependencies": {
"husky": "^1.3.1",
"mocha": "^5.2.0",
"semver": "^5.6.0"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}