-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 821 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 821 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": "number2words",
"version": "0.2.0",
"description": "A library to convert a number input in words. Support multiple languages.",
"main": "index.js",
"scripts": {
"test": "istanbul cover jasmine-node -- --color --autotest --verbose spec/ src/",
"serve-coverage": "http-server coverage/lcov-report/"
},
"repository": {
"type": "git",
"url": "https://github.com/gpincheiraa/number2words.git"
},
"keywords": [
"convert",
"words",
"number"
],
"author": "Gonzalo Pincheira Arancibia",
"license": "ISC",
"bugs": {
"url": "https://github.com/gpincheiraa/number2words/issues"
},
"homepage": "https://github.com/gpincheiraa/number2words#readme",
"devDependencies": {
"http-server": "^0.9.0",
"istanbul": "^0.4.4",
"jasmine-node": "^1.14.5"
}
}