-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "eventil-cli",
"description": "Search for tech conferences and meetups on the command line",
"author": "Zaiste <oh@zaiste.net>",
"version": "0.0.1",
"bin": {
"eventil": "dist/index.js"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "cross-env NODE_ENV=production npm run build",
"dev": "babel -w src --out-dir dist",
"pretest": "npm run build"
},
"main": "dist/index.js",
"files": [
"dist"
],
"homepage": "https://github.com/eventil/eventil-cli",
"keywords": [
"eventil", "eventil-cli", "conference", "event", "meetup", "tech event",
"tech conference", "javascript", "ruby", "node.js", "python", "clojure",
"rails", "kotlin", "scala", "angular", "react", "vue.js", "rust", "elixir",
"android", "lua", "c#", "f#", "ocaml", "reasonml", "perl", "ember", "ios"
],
"bugs": {
"url": "https://github.com/eventil/eventil-cli/issues"
},
"dependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.40",
"date-fns": "^1.29.0",
"has-ansi": "^3.0.0",
"ink": "^0.4.1",
"ink-select-input": "^1.0.0",
"ink-spinner": "^1.0.0",
"ink-text-input": "^1.1.1",
"meow": "^4.0.0",
"term-size": "^1.2.0",
"axios": "^0.18.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-plugin-transform-react-jsx": "^6.24.1",
"cross-env": "^5.1.3",
"eslint-config-xo-react": "^0.16.0",
"eslint-plugin-react": "^7.7.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eventil/eventil-cli.git"
}
}