-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "@jjcosgrove/max",
"version": "0.0.8",
"description": "A simple backup utility for macOS",
"author": "Jonathan James Cosgrove",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jjcosgrove/max.git"
},
"scripts": {
"build": "webpack --config ./webpack.config.babel.js",
"prepack": "npm install && npm run build"
},
"bin": {
"max": "./build/max.js"
},
"preferGlobal": true,
"engines": {
"node": ">=8.0"
},
"dependencies": {
"commander": "^2.13.0",
"fs-extra": "5.0.0",
"inquirer": "^6.5.0",
"js-yaml": "^3.10.0",
"log-symbols": "^3.0.0",
"mkdirp": "^0.5.1",
"moment": "^2.20.1",
"overwrite": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-loader": "^8.0.6",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"watch-ignore-webpack-plugin": "^1.0.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-node-externals": "^1.6.0"
}
}