forked from digitalfortress-tech/typeahead-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.09 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@netsells/typeahead-standalone",
"title": "typeahead-standalone",
"description": "A fast fully-featured standalone autocomplete library",
"version": "4.22.1",
"homepage": "https://typeahead.digitalfortress.tech",
"license": "MIT",
"scripts": {
"dev": "npm run server -- --mode development --progress",
"prod": "npm run server -- --mode production",
"watch": "npm run dev -- --watch",
"server": "webpack",
"tag": "npm version minor --no-git-tag-version && npm run prod && PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git commit -am \"$PACKAGE_VERSION release\" && git tag v$PACKAGE_VERSION",
"test": "jest src --verbose",
"test-e2e-gui": "npm run cy:open",
"test-e2e": "npm run cy:run",
"cy:run": "npx cypress run --headless --browser chrome",
"cy:open": "npx cypress open --browser chrome",
"lint": "eslint ./src --ext .ts --fix",
"copy-dts-declarations": "copyfiles -u 1 \"src/**/*.d.ts\" dist"
},
"jest": {
"transform": {
"^.+\\.(js|jsx)$": "babel-jest",
"^.+\\.(ts|tsx)?$": "ts-jest"
}
},
"author": {
"name": "Niket Pathak",
"email": "[email protected]",
"url": "https://niketpathak.com"
},
"browser": "dist/typeahead-standalone.js",
"main": "dist/typeahead-standalone.js",
"types": "dist/typeahead-standalone.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/digitalfortress-tech/typeahead-standalone.git"
},
"bugs": {
"url": "https://github.com/digitalfortress-tech/typeahead-standalone/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/digitalfortress-tech/typeahead-standalone/blob/master/LICENSE"
}
],
"files": [
"dist/"
],
"keywords": [
"typeahead",
"autocomplete",
"auto-complete",
"auto-search",
"typeahead search",
"bloodhound",
"suggestion engine",
"auto select",
"typeahead search",
"suggest",
"suggestions",
"autosuggest",
"search",
"word completion",
"twitter typeahead",
"typeahead-standalone.js"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"axe-core": "^4.7.1",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"copyfiles": "^2.4.1",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"cypress": "^12.12.0",
"cypress-axe": "^1.4.0",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}