-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 943 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": "webtask-slack-translate",
"version": "1.0.0",
"description": "Webtask Slack Integration using the Google Translate API",
"main": "dist/webtask.js",
"scripts": {
"build": "rollup -c",
"create": "npm run build && wt create --name translate --secrets-file .env dist/webtask.js",
"deploy": "npm run build && wt update translate dist/webtask.js",
"test": "mocha test/unit",
"test:all": "mocha test/**/*"
},
"keywords": [
"webtask",
"slack",
"translate"
],
"author": "Tyler Metevier",
"license": "MIT",
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"chai": "^4.0.1",
"dotenv": "^4.0.0",
"mocha": "^3.4.2",
"rollup": "^0.42.0",
"rollup-plugin-babel": "^2.7.1",
"sinon": "^2.3.2"
},
"dependencies": {
"request": "^2.81.0"
}
}