-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.19 KB
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
87
{
"name": "extenso",
"version": "3.0.0",
"description": "Uma biblioteca avançada para escrever números por extenso (em português).",
"main": "./dist/extenso.cjs",
"module": "./dist/extenso.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/extenso.mjs"
},
"require": {
"types": "./dist/types/index.d.cts",
"default": "./dist/extenso.cjs"
}
}
},
"sideEffects": false,
"engines": {
"node": ">=22.20"
},
"files": [
"dist"
],
"ava": {
"files": [
"src/**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"src/": "build/src/"
},
"compile": "tsc"
}
},
"scripts": {
"test": "ava --colors",
"test:coverage": "c8 --check-coverage --100 ava --colors",
"test:package": "npm run build && node test/installed-package.mjs",
"lint": "eslint . --ignore-pattern 'dist/*' --ignore-pattern 'build/*'",
"lint:fix": "eslint . --ignore-pattern 'dist/*' --ignore-pattern 'build/*' --fix",
"build": "node esbuild.config.mjs && tsc --project tsconfig.build.json && node scripts/generate-esm-declaration.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lusofonia/extenso.js.git"
},
"homepage": "https://github.com/lusofonia/extenso.js#readme",
"bugs": {
"url": "https://github.com/lusofonia/extenso.js/issues"
},
"devDependencies": {
"@ava/typescript": "^7.0.0",
"@types/node": "^26.1.2",
"ava": "^8.0.1",
"c8": "^12.0.0",
"esbuild": "^0.28.1",
"eslint": "^10.8.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0"
},
"author": "Matheus Alves",
"license": "MIT",
"keywords": [
"javascript",
"i18n",
"number-to-words",
"portuguese",
"biblioteca",
"extenso",
"text-conversion",
"por-extenso",
"numero",
"brazilian-portuguese",
"number-to-text",
"human-readable-numbers",
"porextenso",
"number-formatting",
"numero-por-extenso",
"numeros-por-extenso",
"word-conversion",
"numero-em-palavras"
],
"funding": "https://github.com/sponsors/theuves"
}