-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "extenso",
"version": "2.1.0",
"description": "Uma biblioteca avançada para escrever números por extenso (em português).",
"main": "dist/extenso.esm.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"ava": {
"typescript": {
"rewritePaths": {
"src/": "build/src/"
},
"compile": "tsc"
}
},
"scripts": {
"test": "rm -rf build && ava --colors",
"test:coverage": "rm -rf build && c8 --check-coverage --100 ava --colors",
"lint": "eslint . --ignore-pattern 'dist/*' --ignore-pattern 'build/*'",
"lint:fix": "eslint . --ignore-pattern 'dist/*' --ignore-pattern 'build/*' --fix",
"build": "node esbuild.config.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theuves/extenso.js.git"
},
"homepage": "https://github.com/theuves/extenso.js#readme",
"bugs": {
"url": "https://github.com/theuves/extenso.js/issues"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"ava": "^6.2.0",
"c8": "^10.1.3",
"esbuild": "^0.25.0",
"eslint": "^9.19.0",
"typescript-eslint": "^8.22.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"
]
}