-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "libphonenumbers",
"version": "1.3.0",
"description": "JavaScript port of Google's libphonenumber library for parsing, formatting, and validating international phone numbers in Node.js.",
"author": "Bunlong <bunlong.van@gmail.com>",
"license": "MIT",
"homepage": "https://libphonenumbers.js.org",
"bugs": {
"url": "https://github.com/Bunlong/libphonenumbers.git/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bunlong/libphonenumbers.git"
},
"main": "dist/libphonenumbers.js",
"types": "dist/libphonenumbers.d.ts",
"keywords": [
"libphonenumbers",
"libphonenumber",
"phonenumbers",
"phonenumber",
"phones",
"phone"
],
"options": {
"mocha": "--require should test"
},
"scripts": {
"build": "bin/sh/build.sh",
"lint": "eslint src/index.js test",
"prepare": "npm run build",
"test": "npm run build && npm run testonly",
"testonly": "mocha $npm_package_options_mocha",
"update": "bin/update.sh",
"version": "npm run build && git add -A dist"
},
"devDependencies": {
"browserify": "^13.1.0",
"eslint": "^3.5.0",
"eslint-config-seegno": "^6.0.0",
"google-closure-compiler": "^20200719.0.0",
"google-closure-library": "^20200719.0.0",
"mocha": "^3.0.2",
"should": "^11.1.0"
},
"engines": {
"node": ">=0.10"
}
}