This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
86 lines (86 loc) · 2.14 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "bespoken-tools",
"description": "Tools for making Alexa development easier and more fun",
"license": "SEE LICENSE IN LICENSE",
"private": false,
"version": "2.6.7",
"bin": {
"bst": "./bin/bst.js",
"bst-server": "./bin/bst-server.js",
"bst-test": "./bin/bst-test.js"
},
"dependencies": {
"aws-sdk": "^2.130.0",
"body-parser": "^1.18.2",
"chalk": "^4.1.2",
"commander": "^9.0.0",
"console-stamp": "^3.0.3",
"continuation-local-storage": "^3.2.0",
"express": "^4.16.2",
"https-proxy-agent": "^5.0.0",
"inquirer": "^8.2.0",
"jest-html-reporters": "^1.1.0",
"logless-client": "0.0.1",
"nock": "^9.6.0",
"properties-reader": "0.0.15",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"skill-testing-ml": "^1.4.8",
"update-notifier": "^2.5.0",
"uuid": "^8.3.2",
"virtual-alexa": "^0.7.2",
"virtual-device-sdk": "^1.9.0",
"winston": "^3.5.1"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/sinon": "^10.0.11",
"codecov": "^3.8.3",
"coveralls": "^3.1.1",
"cross-spawn": "^7.0.3",
"dotenv": "^16.0.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-run": "^1.7.1",
"gulp-shell": "^0.8.0",
"gulp-tap": "^2.0.0",
"gulp-tslint": "^8.1.4",
"gulp-typedoc": "^3.0.2",
"mocha": "^9.2.0",
"mockery": "^2.1.0",
"natives": "^1.1.6",
"nyc": "^15.1.0",
"sinon": "^13.0.1",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.11",
"typemoq": "^2.1.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=12"
},
"files": [
"index.js",
"index.d.ts",
"bin/**/*.js",
"lib/**/*.js",
"lib/**/*.d.ts",
"NOTICE"
],
"repository": {
"type": "git",
"url": "git://github.com/bespoken/bst.git"
},
"scripts": {
"mocha": "mocha -r ts-node/register --parallel --jobs 2 test/**/*-test.ts",
"build": "gulp build",
"test": "gulp test",
"coverage": "gulp coverage",
"codecov": "gulp codecov",
"coveralls": "gulp coveralls",
"preversion": "gulp build"
},
"types": "index.d.ts"
}