-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 929 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
{
"name": "typing-ahead",
"version": "1.0.2",
"description": "A lightweight module for generating a data model to perform typeahead or autocomplete task in logarithmic time.",
"main": "index.js",
"scripts": {
"test": "jest ./__tests__/"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.0",
"jest": "^26.2.2"
},
"husky": {
"hooks": {
"pre-push": "echo \"Pre-push checks...\" && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jam3/typing-ahead.git"
},
"bugs": {
"url": "https://github.com/Jam3/typing-ahead/issues"
},
"homepage": "https://github.com/Jam3/typing-ahead#readme",
"keywords": [
"autocomplete",
"typeahead",
"modular",
"lightweight"
]
}