-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
68 lines (68 loc) · 1.51 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
{
"name": "fullstack-phone",
"version": "1.168.0",
"libphonenumber": "v8.13.52",
"description": "A dual-module phone number system with dynamic regional metadata",
"keywords": [
"libphonenumber",
"phone",
"phonenumber",
"format",
"formatter",
"formatting",
"validate",
"validator",
"validation",
"parse",
"parser",
"parsing",
"fullstack",
"telephone",
"browser",
"metadata",
"regional"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paypal/fullstack-phone.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"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": [
"CHANGELOG.md",
"client/",
"server/"
],
"scripts": {
"update": "./bin/update.sh",
"upgrade": "./bin/upgrade.sh",
"build": "./bin/build.sh",
"test": "mocha test/ -R dot && node ./bin/checkES5.js"
},
"devDependencies": {
"acorn": "^8.11.3",
"chai": "^4.3.4",
"google-closure-compiler": "^20230802.0.0",
"google-closure-library": "^20230802.0.0",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"semver": "^5.6.0"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}