-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 756 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 756 Bytes
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
{
"name": "digits-to-swahili",
"version": "1.1.2",
"description": "This package converts numbers into Kiswahili words",
"main": "./lib/cjs/index.js",
"module": "./lib/index.js",
"scripts": {
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run tsc",
"test": "mocha"
},
"keywords": [
"digits",
"numbers",
"swahili",
"convert"
],
"author": "shemmjunior",
"license": "MIT",
"homepage": "https://github.com/shemmjunior/digits-to-swahili",
"devDependencies": {
"@types/node": "^17.0.31",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"typescript": "^4.6.4"
},
"files": [
"lib/"
]
}