-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.98 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
{
"name": "@wazo/euc-plugins-sdk",
"version": "0.0.23",
"description": "Wazo's Unified Enterprise Communication JavaScript Software Development Kit.",
"author": "Wazo (http://wazo.io)",
"maintainers": [
"Wazo Team <dev@wazo.io> (https://github.com/wazo-communication)"
],
"contributors": [
"Wazo Team <dev@wazo.io> (https://github.com/wazo-communication)"
],
"license": "MIT",
"homepage": "https://github.com/wazo-communication/euc-plugins-js-sdk",
"repository": {
"type": "git",
"url": "https://github.com/wazo-communication/euc-plugins-js-sdk"
},
"bugs": {
"url": "https://github.com/wazo-communication/euc-plugins-js-sdk/issues"
},
"files": [
"lib",
"src"
],
"release": {
"branches": [
"master"
]
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
},
"./types": "./lib/cjs/types/types.d.ts"
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"module": "lib/esm/index.js",
"scripts": {
"test": "yarn test:node && yarn test:browser",
"test:node": "jest",
"test:browser": "yarn playwright test test/browser",
"clean": "rimraf lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepack": "npm run build",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@playwright/test": "^1.38.1",
"@types/jest": "^29.2.4",
"babel-jest": "^29.7.0",
"jest": "^29.3.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"serve": "^14.2.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"events": "^3.3.0"
}
}