-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 915 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
{
"name": "iftttmaker",
"version": "1.3.0",
"description": "Sending requests to IFTTT Maker channel with node.js",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"compile": "babel src --out-dir dist",
"prepublish": "npm run lint && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kolarcz/node-iftttmaker.git"
},
"keywords": [
"ifttt",
"maker"
],
"author": "Petr Kolář <kolarcz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kolarcz/node-iftttmaker/issues"
},
"homepage": "https://github.com/kolarcz/node-iftttmaker#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"eslint": "^3.3.0",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.13.0"
},
"dependencies": {
"https-proxy-agent": "^2.1.1"
}
}