-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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": "getmethefuckthere",
"version": "0.0.0-development",
"description": "Get directions to wherever the fuck",
"scripts": {
"codecov": "npx codecov",
"commitmsg": "npx commitlint -e $GIT_PARAMS",
"build": "npx babel src/ -d build/ --delete-dir-on-start",
"build:prod": "BABEL_ENV=production npm run build",
"lint": "npx eslint --ext .js .",
"test": "npx jest",
"prepublishOnly": "npm run build:prod",
"gc": "commit",
"semantic-release": "npx semantic-release",
"travis-deploy-once": "npx travis-deploy-once"
},
"author": "Jae Bradley",
"license": "MIT",
"preferGlobal": true,
"main": "./build/index.js",
"bin": {
"gmtft": "./build/gmtft.js"
},
"dependencies": {
"@babel/runtime": "^7.10.0",
"@google/maps": "^1.1.3",
"cli-table3": "^0.6.0",
"commander": "^4.1.1",
"fuzzy": "^0.1.3",
"inquirer": "^6.5.2",
"inquirer-autocomplete-prompt": "^1.0.2",
"striptags": "^3.1.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@commitlint/prompt": "^8.3.5",
"@commitlint/prompt-cli": "^8.3.5",
"ajv": "^6.11.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"babel-preset-minify": "^0.5.1",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.1",
"jest": "^25.1.0",
"semantic-release": "^17.0.2",
"travis-deploy-once": "^5.0.11"
},
"repository": {
"type": "git",
"url": "https://github.com/jaebradley/getmethefuckthere.git"
}
}