-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 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
66
67
68
69
70
71
{
"name": "@hyfn/hubspot-sync",
"version": "0.0.1",
"main": "lib/hubspot-sync.js",
"description": "Hubspot syncing",
"keywords": [
"hubspot",
"sync",
"transfer",
"ftps",
"ftp",
"synchronise"
],
"author": {
"name": "Shaun Collins",
"email": "[email protected]",
"url": "http://hyfn.com"
},
"homepage": "https://github.com/hyfn/hubspot-sync",
"repository": {
"type": "git",
"url": "https://github.com/hyfn/hubspot-sync.git"
},
"bugs": {
"url": "https://github.com/hyfn/hubspot-sync/issues"
},
"license": "MIT",
"engines": {
"node": "*"
},
"bin": "./lib/hubspot-sync.js",
"scripts": {
"clean": "rm -r ./lib/*",
"server": "node ./test/nodeftpd.js",
"test": "jest",
"localprepublish": "npm run clean ; node_modules/babel-cli/bin/babel.js src --out-dir lib --no-comments"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2"
},
"dependencies": {
"ascii-progress": "^1.0.5",
"async": "^2.3.0",
"cli-spinner": "^0.2.6",
"colors": "^1.1.2",
"commander": "^2.9.0",
"ftps": "^1.1.0",
"ftpsync": "0.1.10",
"glob-fs": "^0.1.6",
"js-yaml": "^3.8.3"
},
"browserDependencies": {
"ftps": "^0.2.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-rest-spread"
]
}
}