-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
38 lines (38 loc) · 960 Bytes
/
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
{
"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",
"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"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"ava": "^6.2.0",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"typescript-eslint": "^8.16.0"
},
"author": "Matheus Alves",
"license": "MIT"
}