forked from MakingChatbots/ivr-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 812 Bytes
/
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
{
"name": "root",
"private": true,
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-tsdoc": "^0.2.11",
"lerna": "^4.0.0",
"typedoc": "^0.20.30",
"typedoc-plugin-markdown": "^3.6.0"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test",
"test:integration": "lerna run test:integration --scope ivr-tester-cli",
"doc": "lerna run doc",
"readme:copy": "cp README.md ./packages/ivr-tester/"
},
"engines": {
"node": ">= 10.14.2"
}
}