-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
44
45
46
47
48
49
50
{
"name": "botbuilder-storage-postgres",
"version": "1.1.3",
"license": "MIT",
"contributors": [
{
"name": "Anthony Gardner",
"url": "https://github.com/roeintense"
}
],
"homepage": "https://github.com/TDAmeritrade/botbuilder-storage-postgres#readme",
"repository": {
"type": "git",
"url": "https://github.com/TDAmeritrade/botbuilder-storage-postgres.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/pg": "^7.11.2",
"botbuilder": "^4.6.0",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.29.0"
},
"scripts": {
"test:unit": "npm run build && nyc mocha test/unit",
"test:integration": "npm run build && nyc mocha test/integration",
"cover": "npm run build && nyc mocha test && nyc report --reporter html && start /max coverage/index.html",
"build": "node node_modules/typescript/bin/tsc"
},
"devDependencies": {
"@types/bluebird": "^3.5.28",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.3",
"@types/validator": "^10.11.3",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"sinon": "^7.5.0",
"source-map-support": "^0.5.16",
"typescript": "^3.6.4"
}
}