forked from howdyai/botkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 708 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "botkit-packages",
"private": true,
"scripts": {
"postinstall": "lerna bootstrap --hoist",
"build": "lerna run build",
"test": "lerna run build ; lerna run test",
"build-docs": "lerna run build-docs",
"eslint": "./node_modules/.bin/eslint ./packages/*/src/*.ts ./packages/*/src/**/*.ts",
"eslint-fix": "./node_modules/.bin/eslint ./packages/*/src/*.ts ./packages/*/src/**/*.ts --fix",
"lerna:pack": "lerna run pack"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"lerna": "^4.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"typescript": "^3.7.5"
}
}