-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "@yext/phonenumber-util",
"version": "0.2.3",
"author": "[email protected]",
"license": "BSD-3-Clause",
"description": "Utility for extracting and validating phone numbers",
"type": "module",
"main": "src",
"exports": {
".": "./src/base.js",
"./geo": "./src/geo.js"
},
"types": "src/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/hearsaycorp/phonenumber-util.git"
},
"scripts": {
"lint": "eslint **/*.js **/__tests__/*.js",
"format": "prettier --write **/*.js **/__tests__/*.js",
"test": "TZ=America/Los_Angeles vitest",
"build": "node -e \"console.log('No build script for vanilla JS')\"",
"prepare": "husky",
"make-badges": "istanbul-badges-readme"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"generate-license-file": "^3.6.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"istanbul-badges-readme": "^1.9.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"vitest": "^2.1.1"
},
"eslintConfig": {},
"lint-staged": {
"**/*.js": [
"npm run lint"
],
"**/*.{js,json,md}": [
"npm run format"
]
}
}