-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (56 loc) · 1.56 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
54
55
56
57
{
"name": "english2number",
"version": "0.0.0-semantic-versioned",
"description": "Converts English words to numbers.",
"main": "lib/index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- test -R spec",
"codacy": "cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage -p .",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"semantic-release": "semantic-release-gitlab"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/TSavo/english2number-js.git"
},
"keywords": [
"Javascript",
"numbers",
"english",
"english2numbers",
"natural language",
"numeral",
"convert",
"convert English to numbers"
],
"author": "Travis Savo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TSavo/english2number-js/issues"
},
"homepage": "https://github.com/TSavo/english2number-js#readme",
"tonicExampleFilename": "example.js",
"devDependencies": {
"chai": "^3.5.0",
"codacy-coverage": "^2.0.0",
"codeclimate-test-reporter": "^0.4.0",
"cz-conventional-changelog": "^1.2.0",
"expect": "^1.20.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-circleci-reporter": "0.0.2",
"mocha-junit-reporter": "^1.12.1",
"semantic-release-gitlab": "^2.4.20",
"should": "^11.1.2",
"xunit-file": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}