forked from zodern/meteor-up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.25 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
{
"name": "mup",
"version": "1.2.11",
"description": "Production Quality Meteor Deployments",
"main": "lib/index.js",
"bin": {
"mup": "./index.js"
},
"scripts": {
"prepublish": "npm run build -s",
"build": "babel src --out-dir lib --sourceRoot=./ --copy-files --presets=es2015,es2016,es2017,stage-3",
"build:watch": "npm run build -s -- -w",
"pretest": "npm run lint",
"test": "bash ./tests/run.sh",
"test:watch": "bash ./tests/run-watch.sh",
"test:custom-server": "mocha --compilers js:babel-register --require babel-polyfill lib/**/__tests__/**/*.js",
"test:module": "mocha --compilers js:babel-register --require babel-polyfill ",
"test:parallel": "bash ./tests/run-parallel.sh",
"lint": "npm run lint:code && npm run lint:defaultConfig && npm run lint:readme",
"lint:defaultConfig": "eslint --ext=\".sample\" -c .eslintrc.yml --rule=\"comma-dangle: 0\" .",
"lint:code": "eslint .",
"lint:readme": "eslint --ext md .",
"docs": "cd docs && bundle exec jekyll serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kadirahq/meteor-up.git"
},
"keywords": [
"meteor"
],
"author": "Kadira Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/kadirahq/meteor-up/issues"
},
"homepage": "https://github.com/kadirahq/meteor-up#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.0",
"eslint-plugin-markdown": "^1.0.0-beta.4",
"mocha": "^3.2.0",
"nofat": "1.0.x"
},
"dependencies": {
"archiver": "1.x.x",
"async": "^2.1.5",
"babel-polyfill": "6.6.1",
"bluebird": "3.x.x",
"boxen": "^1.0.0",
"chalk": "^1.1.3",
"commander": "2.9.x",
"debug": "2.x.x",
"expand-tilde": "^2.0.2",
"joi": "^10.2.1",
"nodemiral": "1.x.x",
"parse-json": "^2.2.0",
"random-seed": "^0.3.0",
"shelljs": "0.5.x",
"silent-npm-registry-client": "2.x.x",
"ssh2": "0.4.x",
"underscore": "1.x.x",
"uuid": "2.x.x"
}
}