-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "nanp-number-generator",
"version": "1.2.02",
"files": [
"lib/**/*",
"src/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "./lib/index.mjs",
"type": "commonjs",
"description": "A tool to generate only numbers that comply with the North American Numbering Plan",
"repository": "https://github.com/KirbyPaint/nanp-number-generator.git",
"author": "Ash Porter <[email protected]>",
"keywords": [
"phone",
"number",
"nanp"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts --clean",
"clean": "rm -rf ./lib",
"prepack": "yarn clean && yarn build",
"test": "vitest",
"test:once": "vitest run",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^9.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jsdom": "^24.0.0",
"tsconfig-paths": "4.2.0",
"tsup": "^8.0.0",
"typescript": "^5.1.6",
"vitest": "^1.0.0"
},
"homepage": "https://github.com/KirbyPaint/nanp-number-generator#readme",
"lint-staged": {
"*.ts{,x}": "yarn lint"
},
"bugs": {
"url": "https://github.com/KirbyPaint/nanp-number-generator/issues"
},
"dependencies": {}
}