This repository was archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.22 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "skill-testing-ml",
"version": "1.4.8",
"description": "Skill Testing Markup Language",
"main": "dist/lib/Index.js",
"bin": {
"skill-tester": "dist/bin/SkillTester.js"
},
"engines": {
"node": ">=12"
},
"files": [
"dist/bin/**/*.js",
"dist/lib/**/*.js"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js",
"bin/**/*.js",
"!**/node_modules/**",
"!**/vendor/**"
],
"moduleFileExtensions": [
"js",
"json",
"node"
],
"silent": false,
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.test.js"
],
"testPathIgnorePatterns": [
"dist"
],
"reporters": [
"default",
"jest-junit"
],
"testURL": "http://localhost/",
"verbose": true
},
"prettier": {
"tabWidth": 4
},
"repository": {
"type": "git",
"url": "git://github.com/bespoken/skill-testing-ml.git"
},
"scripts": {
"babel": "npm run babel.lib && npm run babel.test && npm run babel.bin",
"babel.lib": "babel lib -d dist/lib",
"babel.test": "babel test -D -d dist/test",
"babel.bin": "babel bin -d dist/bin",
"docs": "rm -rf docs/api && jsdoc -c jsdoc-conf.json",
"lint": "eslint --config .eslintrc.json bin lib test",
"lint.fix": "eslint --config .eslintrc.json --fix bin lib test",
"pretest": "npm run lint",
"preversion.bak": "npm test && npm run test.babel && npm run docs",
"test": "jest",
"test.babel": "npm run babel && jest --config jest-config-babel.json",
"test.smapi.1": "jest --runInBand test/SMAPI.test.js",
"test.smapi.2": "jest --runInBand test/SMAPIInvoker.test.js",
"coverage": "codecov",
"test.watch": "jest --watchAll"
},
"author": "John Kelvie",
"license": "ISC",
"dependencies": {
"bespoken-jest-stare": "^1.1.0-RC.2",
"bespoken-jsonpath": "^1.0.1",
"chalk": "^2.4.2",
"cosmiconfig": "^5.2.0",
"dotenv": "^8.2.0",
"https-proxy-agent": "^5.0.0",
"jest": "^24.7.1",
"jest-message-util": "^24.7.1",
"js-yaml-bespoken": "^3.11.6",
"lodash": "^4.17.11",
"uuid": "^3.3.3",
"virtual-alexa": "^0.7.7",
"virtual-device-sdk": "^1.9.0",
"virtual-google-assistant": "^0.3.6",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-block-scoping": "^7.4.4",
"@babel/plugin-transform-classes": "^7.4.4",
"alexa-sdk": "^1.0.25",
"ask-sdk-core": "^2.0.0",
"ask-sdk-model": "^1.0.0",
"body-parser": "^1.18.3",
"codecov": "^3.0.2",
"debug": "^4.3.4",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-sort-class-members": "^1.4.0",
"eslint-plugin-sort-requires": "^2.1.0",
"eslint-plugin-spellcheck": "^0.0.11",
"eslint-plugin-standard": "^4.0.0",
"jest-junit": "^6.4.0",
"jsdoc": "^3.6.1",
"nock": "^10.0.6",
"sprintf-js": "^1.1.1"
}
}