-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.84 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
{
"name": "luis-response-builder",
"version": "0.2.0",
"main": "dist/src/index.js",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run cleanBuild && node_modules/mocha/bin/_mocha dist/test --recursive",
"build": "node_modules/typescript/bin/tsc",
"clean": "rm -rf ./dist",
"cleanBuild": "npm run clean && npm run build",
"localTest": "node_modules/mocha/bin/_mocha --require node_modules/ts-node/register test/ --recursive",
"test": "npm run cleanBuild && node_modules/mocha/bin/_mocha dist/test --recursive"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/lodash": "^4.14.71",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.14",
"chai": "^4.1.0",
"mocha": "^3.4.2",
"ts-node": "^3.2.0",
"typescript": "^2.4.1"
},
"description": "luis builtin entity builders",
"dependencies": {
"ansi-styles": "^3.1.0",
"arrify": "^1.0.1",
"assertion-error": "^1.0.2",
"balanced-match": "^1.0.0",
"brace-expansion": "^1.1.8",
"browser-stdout": "^1.3.0",
"chalk": "^2.0.1",
"check-error": "^1.0.2",
"color-convert": "^1.9.0",
"color-name": "^1.1.3",
"commander": "^2.9.0",
"concat-map": "^0.0.1",
"debug": "^2.6.0",
"deep-eql": "^2.0.2",
"diff": "^3.2.0",
"escape-string-regexp": "^1.0.5",
"fs.realpath": "^1.0.0",
"get-func-name": "^2.0.0",
"glob": "^7.1.1",
"graceful-readlink": "^1.0.1",
"growl": "^1.9.2",
"has-flag": "^1.0.0",
"inflight": "^1.0.6",
"inherits": "^2.0.3",
"json3": "^3.3.2",
"lodash": "^4.17.4",
"lodash._baseassign": "^3.2.0",
"lodash._basecopy": "^3.0.1",
"lodash._basecreate": "^3.0.3",
"lodash._getnative": "^3.9.1",
"lodash._isiterateecall": "^3.0.9",
"lodash.create": "^3.1.1",
"lodash.isarguments": "^3.1.0",
"lodash.isarray": "^3.0.4",
"lodash.keys": "^3.1.2",
"make-error": "^1.3.0",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"ms": "^0.7.2",
"once": "^1.4.0",
"path-is-absolute": "^1.0.1",
"pathval": "^1.1.0",
"source-map": "^0.5.6",
"source-map-support": "^0.4.15",
"strip-bom": "^3.0.0",
"strip-json-comments": "^2.0.1",
"supports-color": "^3.1.2",
"tsconfig": "^6.0.0",
"type-detect": "^4.0.3",
"user-home": "^1.1.1",
"v8flags": "^2.1.1",
"wrappy": "^1.0.2",
"yn": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/microsoftly/luis-response-builder.git"
},
"files": [
"dist"
],
"keywords": [
"luis.ai",
"test",
"tdd",
"bdd",
"integration testing",
"botbuilder",
"mbf"
],
"author": "matt schwartz",
"bugs": {
"url": "https://github.com/microsoftly/luis-prebuilt/issues"
},
"homepage": "https://github.com/microsoftly/luis-prebuilt#readme"
}