-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.24 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
{
"name": "nl3",
"version": "0.0.3",
"description": "nl3 - natural language triples",
"license": "MIT",
"author": "Hector Gray <[email protected]> (https://github.com/defstream)",
"main": "index.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"doc": "jsdoc -R ./README.md -r -d ./doc/api ./lib ./index.js",
"test": "snyk test && istanbul cover --dir ./doc/coverage _mocha -- --recursive && cat ./doc/coverage/lcov.info | ./node_modules/codecov/bin/codecov",
"analyze": "plato -d ./doc/analysis -r ./lib ./index.js",
"clean": "rm -rf ./doc",
"build": "npm run clean && npm run doc && npm run test && npm run analyze"
},
"keywords": [
"nl3",
"nl",
"l3n",
"lne3",
"n3l",
"natural",
"language",
"triple",
"tripple",
"3",
"nodejs",
"node",
"rdf",
"triples",
"english",
"text",
"graph",
"search",
"javascript"
],
"dependencies": {
"neo-async": "1.8.2",
"pluralize": "1.2.1",
"pos": "0.3.0",
"speakeasy-nlp": "0.2.2",
"stemmer": "0.1.4"
},
"devDependencies": {
"chai": "3.5.0",
"snyk": "1.14.3",
"codecov": "1.0.1",
"istanbul": "0.4.3",
"jsdoc": "3.4.0",
"mocha": "2.4.5",
"plato": "1.5.0"
}
}