-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·70 lines (70 loc) · 1.73 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
{
"name": "meteor-google-cloud",
"version": "1.2.1",
"description": "Automate Meteor deployments on Google Cloud App Service Flexible",
"main": "dist/main.js",
"bin": {
"meteor-google-cloud": "dist/bin/meteor-google-cloud.js"
},
"watch": {
"build": "src"
},
"scripts": {
"build": "babel src --out-dir dist",
"dev": "npm-watch build",
"lint": "eslint source"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EducationLink/meteor-google-cloud.git"
},
"keywords": [
"meteor",
"deployment",
"hosting",
"google",
"gcp",
"app-engine"
],
"directories": {
"examples": "examples"
},
"author": "Raphael Arias <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/EducationLink/meteor-google-cloud/issues",
"homepage": "https://github.com/EducationLink/meteor-google-cloud",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"npm-watch": "^0.6.0"
},
"dependencies": {
"@hapi/joi": "^15.0.0",
"axios": "^0.18.0",
"command-exists": "^1.2.8",
"commander": "^2.19.0",
"core-js": "^3.0.0",
"delay": "^4.1.0",
"js-yaml": "^3.13.1",
"jsesc": "^2.5.2",
"jsonfile": "^5.0.0",
"lodash.defaultto": "^4.14.0",
"lodash.dropright": "^4.1.1",
"lodash.nth": "^4.11.2",
"lodash.omit": "^4.5.0",
"p-iteration": "^1.1.8",
"regenerator-runtime": "^0.13.2",
"shelljs": "^0.8.3",
"tar": "^4.4.8",
"tmp": "^0.1.0",
"update-notifier": "^2.1.0",
"winston": "^2.4.4"
},
"engines": {
"node": ">=4"
}
}