-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 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
{
"name": "azure-storage-to-eventhub",
"version": "0.0.3",
"description": "Move items from azure storage to eventhubs",
"main": "lib/index.js",
"author": "aureliano.bergese@mondora.com",
"license": "MIT",
"private": false,
"dependencies": {
"@azure/event-hubs": "^1.0.6",
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"azure-storage": "^2.10.1",
"babel-core": "^7.0.0-bridge.0",
"bluebird": "^3.5.2",
"semlocks": "^1.3.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.14.3"
},
"scripts": {
"build": "babel src --out-dir lib --copy-files",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint src",
"lint:fix": "eslint src test --fix",
"postinstall": "yarn build"
}
}