-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.22 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "phone-fns",
"version": "4.1.2",
"description": "A small, modern, and functional phone library for javascript",
"main": "dist/phone-fns.min.js",
"module": "src/index.js",
"typings": "types/index.d.ts",
"type": "module",
"unpkg": "dist/phone-fns.iife.min.js",
"jsdelivr": "dist/phone-fns.iife.min.js",
"scripts": {
"prepack": "npm-run-all --parallel docs scripts lint test --serial build",
"scripts": "node scripts/create-export.js",
"docs": "jsdoc -c jsdoc.json",
"build": "rollup -c",
"lint": "standard src/**/*.js",
"test": "tape tests/*.spec.js | tap-on",
"test:cov": "c8 tape tests/*.spec.js",
"coverage": "c8 check-coverage --lines 90 --branches 90 --functions 90 --statements 90",
"report": "c8 report --reporter=text-lcov > coverage.lcov"
},
"exports": {
".": {
"require": {
"types": "./types/index.d.cts",
"default": "./dist/phone-fns.min.cjs"
},
"import": {
"types": "./types/index.d.ts",
"default": "./dist/phone-fns.min.js"
},
"default": {
"types": "./types/index.d.ts",
"default": "./dist/phone-fns.iife.min.js"
}
}
},
"standard": {
"ignore": [
"docs/*",
"dist/*",
"types/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/dhershman1/phone-fns"
},
"bugs": {
"url": "https://github.com/dhershman1/phone-fns/issues"
},
"homepage": "https://phone-fns.dusty.codes/",
"keywords": [
"format",
"phone number",
"functional",
"phone libary",
"phone",
"phone-fns",
"telephone",
"tel",
"functional library",
"formatting",
"modern"
],
"author": "Dustin Hershman <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "7.25.7",
"@babel/preset-env": "7.25.7",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "0.4.4",
"c8": "^10.1.2",
"globby": "13.2.2",
"jsdoc": "4.0.3",
"npm-run-all": "4.1.5",
"pinet": "1.2.1",
"rollup": "4.24.0",
"rollup-plugin-filesize": "10.0.0",
"standard": "17.1.2",
"tap-on": "1.0.0",
"tape": "5.9.0"
}
}