forked from finnfiddle/words-to-numbers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 891 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
{
"name": "words-to-numbers",
"description": "convert textual words to numbers with optional fuzzy text matching",
"version": "1.5.1",
"license": "MIT",
"main": "src/index.mjs",
"scripts": {
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js"
},
"devDependencies": {
"chai": "3.x.x",
"eslint": "1.7.x",
"its-set": "^1.1.5",
"mocha": "2.x.x"
},
"author": "Finn Fitzsimons <[email protected]>",
"bugs": {
"url": "https://github.com/finnfiddle/words-to-numbers/issues"
},
"homepage": "https://github.com/finnfiddle/words-to-numbers",
"repository": {
"type": "git",
"url": "https://github.com/finnfiddle/words-to-numbers.git"
},
"dependencies": {
}
}