-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "autosuggestion",
"author": "asmr.hex",
"license": "GPLV3",
"version": "1.1.5",
"description": "  Generates suggestions for text completion.  ",
"keywords": [
"auto-suggest",
"auto suggest",
"autosuggest",
"auto-suggestion",
"auto suggestion",
"autosuggestion",
"auto-complete",
"auto complete",
"autocomplete",
"typeahead",
"prefix tree",
"phrase completion"
],
"homepage": "https://asmr-hex.github.io/autosuggestion",
"repository": {
"type": "git",
"url": "https://github.com/asmr-hex/autosuggestion.git"
},
"main": "dist/autosuggestion.umd.js",
"browser": "dist/autosuggestion.umd.js",
"module": "lib/index.js",
"typings": "lib/types/index.d.ts",
"unpkg": "dist/autosuggestion.umd.js",
"scripts": {
"build": "npm test && npm run build:lib && npm run build:dist",
"build:lib": "rm -rf lib && npx tsc",
"build:dist": "rm -rf dist && npx webpack",
"test": "npx jest --coverage && npx typedoc",
"test:watch": "npx jest --watch",
"docs": "npx typedoc",
"docs:watch": "npx typedoc --watch",
"prepare": "husky install",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"files": [
"dist",
"lib",
"package.json",
"README.md",
"LICENSE.txt"
],
"devDependencies": {
"@types/jest": "^26.0.20",
"babel-jest": "^26.6.3",
"husky": "^5.1.3",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"typedoc": "^0.20.28",
"typescript": "^4.1.5",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0"
}
}