-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
42
43
{
"name": "ask-sdk-postgresql-persistence-adapter",
"version": "1.0.5",
"description": "PostgreSQL based implementation package of PersistenceAdapter interface for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "node dist/index.js",
"test": "jest",
"build": "tsc",
"format": "prettier --write \"lib/**/*.ts\" \"lib/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"Alexa",
"SDK",
"PostgreSQL"
],
"author": "Bryan Lee Moore",
"license": "Apache-2.0",
"dependencies": {
"pg": "^8.10.0"
},
"peerDependencies": {
"ask-sdk-core": "^2.12.1"
},
"devDependencies": {
"@types/jest": "^29.4.1",
"@types/pg": "^8.6.6",
"ask-sdk-core": "^2.12.1",
"ask-sdk-model": "^1.57.0",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"prettier": "^3.0.1",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.2"
},
"repository": "github:bryanleemoore/ask-sdk-postgresql-persistence-adapter",
"homepage": "https://github.com/bryanleemoore/ask-sdk-postgresql-persistence-adapter#readme",
"bugs": "https://github.com/bryanleemoore/ask-sdk-postgresql-persistence-adapter/issues"
}