forked from vbeffa/Airport-Autocomplete-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.12 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
{
"name": "airport-autocomplete-js",
"version": "2.1.3",
"description": "Airport Autocomplete input tag",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha src/tests.js -w --require @babel/register",
"test:single": "mocha src/tests.js --require @babel/register",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"dev": "npx webpack-dev-server",
"prebuild": "rm -rf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore tests.js,data_scripts src && rm -rf dist/data_scripts",
"build:browser-min": "webpack --output-filename index.browser.min.js -p"
},
"keywords": [
"airport",
"picker",
"autocomplete",
"js",
"npm"
],
"files": [
"dist",
"README.md"
],
"author": "Costa Alexoglou <konsalexee@gmail.com>",
"license": "MIT",
"dependencies": {
"eslint-plugin-prettier": "3.0.1",
"fuse.js": "3.6.1"
},
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.1",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.2.3",
"@babel/preset-es2015": "7.0.0-beta.53",
"@babel/register": "7.0.0",
"babel-eslint": "8",
"babel-loader": "8.0.0-beta.6",
"babel-preset-env": "1.7.0",
"chai": "4.1.2",
"commitizen": "2.10.1",
"compression-webpack-plugin": "2.0.0",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.x",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"ghooks": "2.0.4",
"mocha": "5.2.0",
"npm-run-all": "4.1.3",
"prettier": "1.14.3",
"prettier-eslint": "8.8.2",
"semantic-release": "^15.9.15",
"travis-deploy-once": "^5.0.7",
"webpack": "4.19.0",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.11"
},
"repository": {
"type": "git",
"url": "https://github.com/konsalex/Airport-Autocomplete-JS.git"
},
"publishConfig": {
"access": "public"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run test:single"
}
}
}