-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
{
"name": "fast-ternary-string-set",
"version": "2.4.0",
"description": "",
"keywords": [
"ternary search tree",
"lexicographic tree",
"trie",
"set",
"string set",
"sorted set",
"dictionary",
"hash table",
"word game",
"word puzzle",
"autocomplete",
"prediction",
"crossword solver",
"anagram",
"spelling"
],
"author": "Christopher G. Jennings",
"license": "MIT",
"main": "lib/cjs/fast-ternary-string-set.js",
"module": "lib/esm/fast-ternary-string-set.js",
"types": "lib/fast-ternary-string-set.d.ts",
"unpkg": "lib/esm/fast-ternary-string-set.js",
"scripts": {
"build": "tsc --removeComments --declaration false && tsc -p tsconfig-cjs.json --removeComments --declaration false && tsc --emitDeclarationOnly --outDir lib",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src",
"doc": "typedoc --excludePrivate src/fast-ternary-string-set.ts --out docs",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test",
"preversion": "npm run lint && npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^35.5.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.4.3",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CGJennings/fast-ternary-string-set.git"
},
"bugs": {
"url": "https://github.com/CGJennings/fast-ternary-string-set/issues"
},
"homepage": "https://github.com/CGJennings/fast-ternary-string-set#readme"
}