-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1015 Bytes
/
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
{
"name": "@ychebotaev/trie",
"version": "0.2.0",
"description": "A prefix tree class",
"main": "dist/trie.es.js",
"files": [
"dist/index.js"
],
"scripts": {
"build": "vite build",
"test": "vitest run",
"prepare": "husky install"
},
"keywords": [
"trie",
"prefix tree",
"digital tree"
],
"author": "YChebotaev <yury.79120345101@gmail.com>",
"repository": {
"type": "git",
"url": "https://gihub.com/ychebotaev/trie"
},
"bugs": {
"url": "https://gihub.com/ychebotaev/trie/issues",
"email": "yury.79120345101@gmail.com"
},
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vitest": "^0.23.4"
}
}