-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"name": "upload-site",
"version": "1.0.0",
"description": "Upload your site via FTP, with incremental uploading based on directory hashes",
"main": "lib/index.js",
"files": [
"lib"
],
"bin": {
"upload-site": "lib/index.js"
},
"engines": {
"node": ">= 9"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "flow-remove-types --pretty index.js > lib/index.js && flow-remove-types --pretty json-store.js > lib/json-store.js && flow-remove-types --pretty get-config.js > lib/get-config.js",
"prepare": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leeds-eBooks/upload-site.git"
},
"keywords": [
"upload",
"deploy",
"website",
"ftp"
],
"author": "benstyles",
"license": "MIT",
"bugs": {
"url": "https://github.com/Leeds-eBooks/upload-site/issues"
},
"homepage": "https://github.com/Leeds-eBooks/upload-site#readme",
"devDependencies": {
"flow-bin": "^0.69",
"flow-remove-types": "^1.2.3",
"flow-typed": "^2.2.3",
"minimist": "^1.2.0",
"release-it": "^7.3.0"
},
"dependencies": {
"esm": "^3.0.17",
"hash-files": "^1.1.1",
"jsftp": "^2.1.2",
"jsonfile": "^4.0.0",
"log-color-optionaldate": "^1.1.1",
"maybes": "^0.2.3",
"pkg-conf": "^2.1.0",
"progress": "^2.0.0",
"util-promisifyall": "^1.0.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"semi": false,
"parser": "flow",
"jsxBracketSameLine": true
}
}