forked from webex/webex-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.94 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
{
"name": "@webex/package-tools",
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0",
"yarn": ">=3.0.0"
},
"type": "commonjs",
"main": "./dist/module/index.js",
"types": "./dist/types/index.d.ts",
"bin": {
"webex-package-tools": "./index.js"
},
"files": [
"./dist"
],
"scripts": {
"build": "yarn build:module && yarn build:types && yarn build:docs",
"build:docs": "yarn build:docs:api",
"build:docs:api": "yarn build:docs:api:metadata && yarn build:docs:api:markdown",
"build:docs:api:metadata": "api-extractor run -c ./api-extractor.config.json",
"build:docs:api:markdown": "api-documenter markdown --input-folder ./docs/api/metadata --output-folder ./docs/api/markdown",
"build:module": "tsc --declaration false --outDir ./dist/module",
"build:src": "yarn build:module && yarn build:types",
"build:types": "tsc --declaration --declarationMap --declarationDir ./dist/types --emitDeclarationOnly",
"clean": "yarn clean:dist",
"clean:dist": "rimraf ./dist",
"deploy:npm": "yarn npm publish",
"start": "node ./index.js",
"test": "yarn test:style && yarn test:syntax && yarn test:integration && yarn test:coverage",
"test:coverage": "yarn test:unit --coverage --reporters=\"jest-silent-reporter\"",
"test:unit": "jest",
"test:style": "eslint ./test/**/*.* ./src/**/*.*",
"test:syntax": "tsc --noEmit"
},
"devDependencies": {
"@microsoft/api-documenter": "7.23.20",
"@microsoft/api-extractor": "7.39.4",
"@types/eslint": "8.56.0",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.0.4",
"eslint-plugin-tsdoc": "0.2.17",
"jest": "29.7.0",
"jest-silent-reporter": "0.5.0",
"rimraf": "5.0.5",
"typescript": "5.3.3"
},
"dependencies": {
"@webex/cli-tools": "workspace:*"
}
}