-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 989 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
38
39
{
"name": "aws-translate-json",
"version": "0.0.3",
"description": "Translate object values into other languages using the AWS translate API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/andre-araujo/aws-translate-json"
},
"keywords": [
"AWS",
"amazon",
"translate",
"translation",
"AWS.Translate",
"object"
],
"scripts": {
"build": "npm run prettier && tsc",
"dev": "run-p watch:*",
"prettier": "prettier --write src/*.ts",
"watch:build": "tsc-watch",
"watch:prettier": "onchange \"src/*\" -- prettier --write {{changed}}"
},
"author": "andre-araujo <[email protected]>",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.443.0"
},
"devDependencies": {
"@types/node": "^11.13.7",
"npm-run-all": "^4.1.5",
"onchange": "^5.2.0",
"prettier": "^1.17.0",
"tsc-watch": "^2.1.2",
"typescript": "^3.4.5"
}
}