This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "hunspell-reader",
"version": "4.0.0",
"description": "A library for reading Hunspell Dictionary Files",
"bin": "bin.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"bin.js",
"!**/*.map",
"!**/*.test.*"
],
"scripts": {
"test-unit": "jest",
"test-spelling": "cspell \"src/**/*.ts\" \"*.md\"",
"smoke-test": "../bin.js words ./dictionaries/nl -n 100",
"test": "npm run test-unit && npm run test-spelling",
"build": "tsc -p .",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"lint": "prettier -w \"**/*.{md,yaml,yml,json,ts}\"",
"clean": "rimraf dist coverage",
"coverage": "jest --coverage",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jason-Rev/hunspell-reader.git"
},
"keywords": [
"Hunspell"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jason-Rev/hunspell-reader/issues"
},
"homepage": "https://github.com/Jason-Rev/hunspell-reader#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.8",
"@types/jest": "^26.0.20",
"@types/node": "^16.0.0",
"cspell": "^5.2.4",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"dependencies": {
"commander": "^7.1.0",
"fs-extra": "^10.0.0",
"gensequence": "^3.1.1",
"iconv-lite": "^0.6.2"
},
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"node": true,
"mocha": true
},
"rules": {}
},
"engines": {
"node": ">=12.0.0"
}
}