-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.26 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
102
103
104
105
106
{
"name": "x-autosuggest",
"version": "1.5.0",
"description": "Autosuggest results based on input.",
"main": "index.cjs.js",
"module": "index.esm.js",
"author": "Ivan Nikolić <[email protected]> (http://ivannikolic.com)",
"license": "MIT",
"files": [
"index.cjs.{js,js.map}",
"index.esm.{js,js.map}",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"sideEffects": false,
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"lint": "eslint '{index,lib/**/*,test/**/*}.{js,svelte}'",
"postpublish": "GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog",
"prepublishOnly": "npm run build",
"release": "np",
"test": "npm run lint && npm run test:automated",
"test:automated": "BABEL_ENV=test SERVICE_PORT=$(get-port) karma start",
"test:automated:watch": "npm run test:automated -- --auto-watch --no-single-run",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md"
},
"dependencies": {
"keycode-js": "^2.0.3",
"manage-side-effects": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/runtime": "^7.2.0",
"babel-preset-niksy": "^4.1.0",
"changelog-verify": "^1.1.2",
"core-js": "^2.6.5",
"eslint": "^6.7.2",
"eslint-config-niksy": "^8.0.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-extend": "^0.1.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^18.4.3",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^14.0.1",
"esm": "^3.0.51",
"get-port": "^4.0.0",
"get-port-cli": "^2.0.0",
"github-release-from-changelog": "^2.1.1",
"husky": "^3.1.0",
"karma": "^4.0.1",
"karma-browserstack-launcher": "^1.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.0",
"karma-sourcemap-loader": "^0.3.7",
"lint-staged": "^9.5.0",
"mocha": "^4.1.0",
"np": "^3.0.4",
"prettier": "^1.17.0",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-svelte": "^5.1.0",
"simulant": "^0.2.2",
"sinon": "^2.4.1",
"svelte": "^2.16.1",
"version-changelog": "^3.1.1"
},
"engines": {
"node": ">=12"
},
"keywords": [
"autocomplete",
"autosuggest",
"input",
"typeahead",
"vanilla"
],
"repository": {
"type": "git",
"url": "git+https://github.com/niksy/x-autosuggest.git"
},
"bugs": {
"url": "https://github.com/niksy/x-autosuggest/issues"
},
"homepage": "https://github.com/niksy/x-autosuggest#readme"
}