-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "websterparser",
"version": "2.0.2",
"description": "Parses the Webster Unabridged Dictionary from GCIDE into a more usable format",
"main": "index.js",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "[email protected]:websterParser/WebsterParser.git"
},
"private": true,
"scripts": {
"build": "npm start && cd template && make",
"build_and_install": "npm start && cd template && make && make install",
"start": "ts-node index.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"fix": "npm run lint -- --fix"
},
"dependencies": {
"async": "^3.2.4",
"cheerio": "^1.0.0-rc.3",
"node-dir": "^0.1.5",
"puid": "^1.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/async": "^3.2.15",
"@types/cheerio": "^0.22.13",
"@types/node": "^18.6.5",
"@types/node-dir": "0.0.34",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.35.0"
}
}