-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 849 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
{
"name": "term-vector",
"description": "Creates a term vector from tokenized text.",
"version": "1.0.1",
"homepage": "https://github.com/fergiemcdowall/term-vector",
"engines": {
"node": ">=6"
},
"devDependencies": {
"standard": "^17.1.2",
"tape": "^5.9.0"
},
"author": {
"name": "Fergus McDowall",
"email": "fergusmcdowall@gmail.com"
},
"keywords": [
"natural",
"language",
"vector",
"vector space model"
],
"main": "index.js",
"maintainers": [
{
"name": "Fergus McDowall",
"email": "fergusmcdowall@gmail.com",
"url": "https://github.com/fergiemcdowall"
}
],
"scripts": {
"test": "node test/test.js && standard --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/fergiemcdowall/term-vector.git"
},
"license": "MIT"
}