-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1017 Bytes
/
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
{
"name": "electron-fetch-transport",
"version": "1.0.2",
"description": "A transport for using the node-slack-sdk with Electron",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm test && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CharlieHess/electron-fetch-transport.git"
},
"keywords": [
"electron-fetch",
"node-slack-sdk"
],
"author": "Charlie Hess",
"license": "MIT",
"bugs": {
"url": "https://github.com/CharlieHess/electron-fetch-transport/issues"
},
"homepage": "https://github.com/CharlieHess/electron-fetch-transport",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.24.1",
"jest-fetch-mock": "^1.1.1"
},
"dependencies": {
"electron-fetch": "^1.0.0",
"form-data": "^2.1.4"
}
}