forked from yamadapc/js-written-number
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.08 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": "written-number",
"version": "0.11.0",
"description": "Convert numbers to words - their written form.",
"main": "lib/index.js",
"scripts": {
"test": " mocha --require blanket -R mocha-spec-cov-alt"
},
"keywords": [
"written",
"number",
"english",
"int",
"word",
"words",
"numbers to words",
"human",
"spoken"
],
"author": "Pedro Tacla Yamada",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yamadapc/js-written-number"
},
"devDependencies": {
"blanket": "1.1.7",
"grunt": "^1.0.3",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-uglify": "^2.3.0",
"mocha": "^3.5.3",
"mocha-spec-cov-alt": "^1.1.1",
"mversion": "^1.10.0",
"should": "^11.2.1"
},
"config": {
"blanket": {
"data-cover-never": [
"node_modules"
],
"pattern": [
"lib"
],
"spec-cov": {
"threshold": 80,
"localThreshold": 80,
"lcovOutput": "lcov"
}
}
}
}