-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1021 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1021 Bytes
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
{
"name": "mup-docker-deploy",
"version": "0.5.0",
"description": "Plugin for Meteor Up to deploy an app using a Dockerfile",
"scripts": {
"prepare": "npm run build",
"build": "babel src --out-dir lib --copy-files",
"build:watch": "npm run build -s -- -w",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "zodern",
"license": "MIT",
"keywords": [
"meteor-up"
],
"main": "index.js",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4"
},
"dependencies": {
"contains-path": "^1.0.0",
"joi": "^12.0.0",
"mkdirp": "^0.5.1",
"random-seed": "^0.3.0",
"rimraf": "^2.6.3",
"tar": "^5.0.11",
"uuid": "^3.2.1"
}
}