-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 1002 Bytes
/
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
{
"name": "in-words",
"version": "0.2.3",
"description": "Convert numbers to words",
"main": "index.js",
"homepage": "https://github.com/adrianheine/node-in-words",
"bugs": "https://github.com/adrianheine/node-in-words/issues",
"scripts": {
"test": "npm run-script lint && npm run-script unittest && npm run-script checkexample",
"unittest": "mocha --recursive --throw-deprecation --check-leaks -b -R progress",
"lint": "eslint .",
"checkexample": "node -c example/example.js"
},
"repository": {
"type": "git",
"url": "git://github.com/adrianheine/node-in-words.git"
},
"keywords": [
"number",
"numbers",
"numerals",
"stringify",
"in-words",
"words"
],
"author": "Adrian Heine <[email protected]>",
"licenses": [ {
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
} ],
"devDependencies": {
"eslint": "^8",
"mocha": "^9"
},
"tonicExampleFilename": "example/example.js"
}