forked from Maheshkumar-Kakade/number-to-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
50
51
52
53
{
"name": "number-to-text",
"version": "0.3.8",
"description": "A number to text converter",
"main": "index.js",
"scripts": {
"test": "standard && istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"cov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"standard": {
"ignore": [
"/dist/"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Maheshkumar-Kakade/number-to-text.git"
},
"bugs": {
"url": "https://github.com/Maheshkumar-Kakade/number-to-text/issues"
},
"homepage": "https://github.com/Maheshkumar-Kakade/number-to-text#readme",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Maheshkumar-Kakade/number-to-text/LICENSE"
}
],
"keywords": [
"number",
"text",
"conversion",
"n2t",
"num2text",
"convert"
],
"author": "Maheshkumar Kakade <[email protected]>",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.2",
"grunt": "^1.0.3",
"grunt-browserify": "^5.3.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-newer": "^1.3.0",
"istanbul": "^0.4.5",
"load-grunt-tasks": "^4.0.0",
"mocha": "^5.2.0",
"should": "^13.2.3",
"standard": "^12.0.1",
"time-grunt": "^1.4.0"
}
}