forked from zodern/meteor-up
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 3.37 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "mup",
"version": "1.4.4",
"description": "Production Quality Meteor Deployments",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zodern/meteor-up.git"
},
"keywords": [
"meteor",
"meteor-up",
"deploy"
],
"author": "Kadira Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/zodern/meteor-up/issues"
},
"homepage": "http://meteor-up.com/",
"bin": {
"mup": "./index.js"
},
"scripts": {
"prepublish": "npm run build -s",
"build": "babel src --out-dir lib --sourceRoot=./ --copy-files --source-maps --presets=es2015,es2016,es2017,stage-3,stage-2",
"build:watch": "npm run build -s -- -w",
"pretest": "npm run lint",
"test": "node ./tests/run.js",
"test:module": "mocha --compilers js:babel-register --require babel-polyfill",
"test:parallel": "bash ./tests/run-parallel.sh",
"test:unit": "cross-env NODE_ENV=test nyc --all mocha --compilers js:babel-register --require babel-polyfill src/**/*.unit.js",
"lint": "npm run lint:code && npm run lint:defaultConfig && npm run lint:readme && npm run lint:css && npm run lint:docs-configs",
"lint:defaultConfig": "eslint --ext=\".sample\" -c .eslintrc.yml --rule=\"comma-dangle: 0\" .",
"lint:code": "eslint .",
"lint:readme": "eslint --ext md .",
"lint:docs-configs": "node tests/validate-docs.js",
"lint:css": "cd docs && stylelint css/*.css",
"docs": "cd docs && bundle exec jekyll serve",
"postinstall": "opencollective postinstall || (exit 0)",
"clean-shrinkwrap": "cd tests && node clean-shrinkwrap.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.22.0",
"babel-register": "^6.26.0",
"chai": "^4.1.1",
"chai-string": "^1.4.0",
"cross-env": "^5.0.1",
"eslint": "^4.17.0",
"eslint-config-es": "^0.8.12",
"eslint-plugin-babel": "^4.1.0",
"eslint-plugin-markdown": "^1.0.0-beta.7",
"gfm-code-blocks": "^1.0.0",
"keypair": "^1.0.1",
"mocha": "^3.5.3",
"node-forge": "^0.7.1",
"nyc": "^11.0.3",
"sinon": "^3.2.1",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0"
},
"dependencies": {
"async": "^2.6.0",
"axios": "^0.17.1",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.5.0",
"boxen": "^1.3.0",
"chalk": "^2.1.0",
"debug": "^3.0.0",
"expand-tilde": "^2.0.2",
"global-modules": "^1.0.0",
"joi": "^12.0.0",
"lodash": "^4.17.4",
"nodemiral": "^1.1.1",
"opencollective": "^1.0.3",
"parse-json": "^4.0.0",
"random-seed": "0.3.0",
"resolve-from": "^4.0.0",
"shelljs": "0.5.3",
"silent-npm-registry-client": "^3.0.1",
"ssh2": "0.4.x",
"tar": "^4.3.2",
"traverse": "^0.6.6",
"uuid": "^3.1.0",
"yargs": "^8.0.2"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"cache": true,
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"src/plugins/**",
"**/__tests__/**"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/meteor-up",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}