-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "@kushalst/numbers-to-words-converter",
"version": "1.1.2",
"description": "Number to words converter. Also supports Indian and International numbering system.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prepublishOnly": "yarn lint && yarn test && yarn compile",
"compile": "tsc",
"test": "cross-env TS_NODE_PROJECT='tsconfig.json' mocha --require ts-node/register",
"lint": "eslint ./src/*.ts"
},
"keywords": [
"number-to-words",
"number",
"words",
"converter",
"indian number system",
"INR",
"international number system",
"comma in numbers"
],
"author": "Kushal S T",
"license": "MIT",
"homepage": "https://github.com/JarvisStriker/numbers-to-words-converter#readme",
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/JarvisStriker/numbers-to-words-converter.git"
}
}