-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"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"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"ava": "^6.2.0",
"c8": "^10.1.3",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"typescript-eslint": "^8.22.0"
},
"author": "Matheus Alves",
"license": "MIT"
}