-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.05 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
37
38
39
40
41
{
"name": "amazonpay-alexa-utils",
"version": "1.0.6",
"description": "Convenience utilities to simplify Amazon Pay for Alexa Skills functionality",
"main": "lib/AmazonPay.js",
"types": "lib/AmazonPay.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielneu/amazonpay-alexa-utils.git"
},
"bugs": {
"url": "https://github.com/danielneu/amazonpay-alexa-utils/issues"
},
"files": [
"lib/**/*"
],
"author": "Daniel Neu",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^24.0.11",
"ask-sdk": "^2.5.2",
"ask-sdk-model": "^1.15.0",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5",
"@types/node": "^11.13.8"
},
"dependencies": {
"https": "^1.0.0"
}
}