This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 262
/
package.json
82 lines (82 loc) · 2.23 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
{
"name": "botbuilder-tools",
"scripts": {
"build": "lerna bootstrap && lerna run build",
"test": "lerna run test",
"coverage": "nyc npm test",
"coveralls": "npm run coverage",
"upload-coveralls": "nyc report --reporter=text-lcov | coveralls",
"eslint": "eslint --format \"node_modules/eslint-friendly-formatter\" \"./packages/@(LUIS|LUISGen|QnAMaker)/bin/*\"",
"tslint": "tslint ./packages/*/src/**/*.ts -t verbose"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"dotnet-2.0.0": "^1.4.4",
"dotnet-2.1": "^2.1.0",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"lerna": "^3.2.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"targz": "^1.0.1",
"ts-loader": "^2.3.7",
"tslint": "^5.11.0",
"tslint-microsoft-contrib": "^5.2.0",
"typescript": "^3.1.1",
"uglify-es": "^3.1.0",
"webpack": "^3.6.0"
},
"nyc": {
"exclude": [
"**/test/*"
]
},
"eslintConfig": {
"env": {
"node": true,
"es6": true,
"mocha": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"indent": "off",
"linebreak-style": "off",
"no-unused-vars": [
"warn"
],
"no-undef": [
"warn"
],
"no-console": [
"warn"
],
"no-case-declarations": [
"warn"
],
"no-extra-semi": [
"warn"
],
"no-unreachable": [
"warn"
],
"no-redeclare": [
"warn"
],
"no-useless-escape": [
"warn"
],
"no-constant-condition": [
"warn"
]
}
}
}