-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
110 lines (110 loc) · 2.73 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "sipgateio",
"version": "1.4.0",
"description": "The official Node.js library for sipgate.io",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint --fix ./lib/**/*.ts",
"format": "prettier --write **/**.ts",
"test:unit-staged": "git stash -k -u && npm run test:unit ; git stash pop",
"test:dev": "jest ./lib --env=node --watch",
"test:unit": "jest ./lib --env=node",
"test:integration": "npm run bundle && jest ./bundle --env=jsdom",
"bundle": "browserify -r ./lib/index.ts:sipgate-io -p tsify -g uglifyify > ./bundle/sipgate-io.js && terser --compress --mangle -o ./bundle/sipgate-io.min.js -- ./bundle/sipgate-io.js",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sipgate-io/sipgateio-node.git"
},
"files": [
"/dist"
],
"author": {
"name": "sipgate GmbH",
"email": "[email protected]",
"url": "https://sipgate.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sipgate-io/sipgateio-node/issues"
},
"homepage": "https://github.com/sipgate-io/sipgateio-node#readme",
"keywords": [
"sipgateio",
"node",
"sipgate",
"call",
"fax",
"sms",
"text",
"contacts",
"phone",
"telephony",
"rest",
"api",
"client"
],
"husky": {
"hooks": {
"pre-commit": "./update_version.sh && npm run test:unit-staged && lint-staged"
}
},
"lint-staged": {
"*.{ts}": [
"npm run format",
"npm run lint",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/atob": "^2.1.2",
"@types/btoa": "^1.2.3",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"axios-mock-adapter": "^1.18.1",
"browserify": "^16.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-autofix": "0.0.9",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jest": "^25.2.1",
"lint-staged": "^10.0.9",
"nock": "^12.0.3",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"tsify": "^4.0.1",
"typescript": "^3.8.3",
"uglifyify": "^5.0.2",
"uglify-js": "^3.8.0",
"terser": "^4.6.7"
},
"dependencies": {
"@types/google-libphonenumber": "^7.4.17",
"@types/jsdom": "^16.1.1",
"@types/json2csv": "^4.5.1",
"@types/vcf": "^2.0.1",
"atob": "^2.1.2",
"axios": "^0.19.2",
"btoa": "^1.2.1",
"file-type": "^14.1.4",
"detect-browser": "^5.0.0",
"google-libphonenumber": "^3.2.8",
"jsdom": "15.2.1",
"json2csv": "^5.0.0",
"vcf": "^2.0.6",
"xml-js": "^1.6.11"
}
}