-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "azure-sync",
"version": "1.0.22",
"main": "dist/index.js",
"author": "mural.co",
"keywords": [
"azure",
"sync"
],
"license": "MIT",
"repository": {
"url": "https://github.com/tactivos/azure-sync"
},
"dependencies": {
"async": "^2.1.2",
"azure-storage": "^1.3.2",
"babel-runtime": "^6.11.6",
"chalk": "^1.1.3",
"deepmerge": "^1.2.0",
"glob": "^7.1.1",
"joi": "^9.2.0",
"progress": "^1.1.8"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run lint && babel lib -d dist",
"sync": "node dist/index.js",
"start": "npm run build && npm run sync",
"lint": "clear && eslint --fix lib",
"prepublish": "npm run build",
"buildTests": "npm run build && babel lib/__tests__ -d dist/__tests__",
"test": "npm run buildTests && node dist/__tests__/index.js"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"eslint": "^3.8.1"
}
}