-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "wordnet-binary-search",
"version": "0.0.12",
"author": "Lee Goddard",
"homepage": "http://lee.goddards.space",
"repository": {
"type": "git",
"url": "git+https://github.com:leegee/wordnet-binary-search.git"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "mocha --require ts-node/register test/wordnet.spec.ts",
"download": "mkdir -p downloads && curl -L https://wordnetcode.princeton.edu/wn3.1.dict.tar.gz | tar -xz -C downloads"
},
"main": "dist/wordnet",
"typings": "dist/wordnet",
"dependencies": {
"@log4js-node/log4js-api": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^5.2.7",
"@types/node": "^22.15.21",
"chai": "^4.2.0",
"glob": "^11.0.2",
"mocha": "^11.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"tslint": "~5.11.0",
"typescript": "^5.8.3"
},
"description": "Access to Wordnet 3.* files through binary-search",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"root": true,
"env": {
"node": true,
"jest": true
},
"ignorePatterns": [],
"rules": {
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": 1,
"@typescript-eslint/space-in-parens": [
1,
"always"
],
"no-console": 1,
"prettier/prettier": 2
}
}
}