-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
{
"name": "italian-numbers",
"version": "1.4.0",
"description": "Converts a number to an italian word representation",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"italian-numbers",
"italian",
"numbers",
"converter",
"convert",
"number",
"word",
"text",
"natural",
"language",
"roman",
"arabic",
"cardinal",
"ordinal"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nikzanda/italian-numbers.git"
},
"author": "Nicolò Zandarin <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"watch": "nodemon ./src/index.ts",
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"build": "npx tsup",
"clean": "rm -rf dist",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.5",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}