-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.22 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": "mfitbs-node-vagrant-run",
"version": "1.0.1",
"description": "module run package",
"main": "lib/runner.js",
"author": "Marcin Faryna",
"license": "Apache License 2.0",
"repository": {
"type": "git",
"url": "https://github.com/farynam/mfitbs-node-vagrant-run.git"
},
"keywords": [
"run project on vm",
"run project on vagrant",
"run on vagrant",
"run on vm",
"run node on vm",
"run node on vagrant",
"vagrant project",
"dev on vagrant",
"devel on vagrant",
"dev on vm",
"devel on vm",
"remote node",
"remote node.js"
],
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.4",
"@babel/node": "7.5.0",
"@babel/preset-env": "7.4.5",
"@babel/register": "7.4.0",
"mfitbs-js-utils": "1.0.11"
},
"devDependencies": {
"@babel/polyfill": "7.4.4",
"gulp": "4.0.2",
"gulp-babel": "8.0.0"
},
"scripts": {
"pub": "gulp",
"sync": "node src/js/lib/sync.js",
"runapp": "node src/js/run/runVagrant.js src/example/ex.js"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry"
}
]
],
"ignore": [
"**/excl/*"
]
}
}