-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.37 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
{
"name": "node-wordnet-magic-nosql",
"version": "0.0.7",
"description": "tools for working with Princeton's lexical database WordNet",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coverage -- -R spec",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coveralls/coverage --report lcovonly -- -R spec && cat ./reports/coveralls/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/contactsamie/node-wordnet-magic-nosql/tree/main"
},
"keywords": [
"WordNet",
"semantic-web",
"NLP",
"lexical-database"
],
"author": "Philipp Burckhardt,Sam Bamgboye",
"license": "MIT",
"bugs": {
"url": "https://github.com/contactsamie/node-wordnet-magic-nosql/tree/main/issues"
},
"homepage": "https://github.com/contactsamie/node-wordnet-magic-nosql/tree/main",
"dependencies": {
"bluebird": "^2.2.2",
"underscore": "^1.6.0"
},
"devDependencies": {
"chai": "^2.1.2",
"chai-as-promised": "^4.3.0",
"chai-things": "^0.2.0",
"coveralls": "^3.1.0",
"istanbul": "^0.3.8",
"jshint": "^2.6.3",
"jshint-stylish": "^1.0.1",
"mocha": "^8.3.2"
}
}