-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
110 lines (110 loc) · 2.82 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": "2.1.5",
"description": "The official Node.js library for sipgate.io",
"main": "./dist/index.js",
"browser": "./dist/browser.js",
"scripts": {
"lint": "eslint --fix ./lib/**/*.ts",
"format": "prettier --write **/**.ts",
"test:dev": "jest --selectProjects node dom --watch",
"test:dev:coverage": "jest --selectProjects node dom --watch --coverage",
"test:unit": "jest --selectProjects node dom",
"test:unit:noDom": "jest --selectProjects node",
"test:unit:coverage": "jest --selectProjects node dom --coverage",
"test:integration": "npm run bundle && jest --selectProjects bundle",
"bundle": "browserify -r ./lib/browser.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 && ./run_unit_tests.sh && lint-staged"
}
},
"lint-staged": {
"*.{ts}": [
"npm run format",
"npm run lint",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/google-libphonenumber": "^7.4.17",
"@types/jest": "^25.1.4",
"@types/jsdom": "^16.1.1",
"@types/json2csv": "^4.5.1",
"@types/qs": "^6.9.1",
"@types/vcf": "^2.0.1",
"@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": "^26.4.2",
"jsdom": "15.2.1",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"terser": "^4.6.7",
"ts-jest": "^26.3.0",
"tsify": "^4.0.1",
"typescript": "^3.8.3",
"uglify-js": "^3.8.0",
"uglifyify": "^5.0.2"
},
"dependencies": {
"axios": "^0.21.1",
"buffer": "^5.6.0",
"detect-browser": "^5.0.0",
"google-libphonenumber": "^3.2.8",
"json2csv": "^5.0.0",
"qs": "^6.9.3",
"vcf": "^2.0.6",
"xml-js": "^1.6.11"
}
}