-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "@2people.it/asterisk-ami-adapter",
"version": "1.1.0",
"description": "Adapter to connect to ami interface",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"doc": "typedoc src/index.ts",
"lint": "eslint . --ext .ts",
"test": "npm run build && node ./build/test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2people-IT/asterisk-ami-adapter.git"
},
"keywords": [
"ami",
"asterisk",
"ami-adapter",
"asterisk-adapter"
],
"author": "https://github.com/2people-IT",
"license": "MIT",
"bugs": {
"url": "https://github.com/2people-IT/asterisk-ami-adapter/issues"
},
"homepage": "https://github.com/2people-IT/asterisk-ami-adapter#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-sort-exports": "^0.8.0",
"semantic-release": "^20.0.2",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"engines": {
"node": ">= 16"
}
}