forked from paypal/fullstack-phone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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": "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 <[email protected]>",
"license": "Apache-2.0",
"contributors": [
"Nathan Hammond <[email protected]> (http://www.nathanhammond.com/)",
"Theresa Khoo <[email protected]>",
"Diego Lagunas <[email protected]>",
"Reza Payami <[email protected]>"
],
"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"
}
}
}