-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.14 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.14 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
{
"name": "numberstring",
"version": "1.0.1",
"description": "Number One Way to Makes Words from Numbers",
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"scripts": {
"demo": "node demo.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --format stylish",
"lint:report": "eslint . --format html -o coverage/lint-report.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianfunk/numberstring.git"
},
"keywords": [
"number",
"string",
"word",
"words",
"integer",
"bigint",
"text",
"convert",
"english",
"quintillion",
"decillion"
],
"author": "Brian Funk",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianfunk/numberstring/issues"
},
"homepage": "https://github.com/brianfunk/numberstring#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.17.0",
"express": "^4.21.2",
"supertest": "^7.0.0",
"vitest": "^4.0.18"
}
}