-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 970 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "natural-number",
"version": "1.1.0",
"description": "Utility to extract numbers and other related entities like dates from text",
"main": "lib/natural-number.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/mugendi/natural-number.git"
},
"keywords": [
"nlp",
"number",
"parse",
"extract",
"ner",
"entities",
"dates",
"roman",
"numbers",
"AI",
"natural",
"language"
],
"author": "Anthony Mugendi (ngurumugz@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mugendi/natural-number/issues"
},
"homepage": "https://github.com/mugendi/natural-number",
"dependencies": {
"async": "^1.4.2",
"lodash": "^4.17.11",
"parse-dates": "^1.0.6",
"parse-numbers": "^1.0.1",
"parse-quantities": "0.0.1",
"string": "^3.3.3"
},
"devDependencies": {}
}