-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
{
"name": "icq-bot-sdk",
"version": "0.1.2",
"description": "ICQ New Bot Node.js SDK",
"main": "dist/index.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"security": "yarn audit",
"lint": "eslint .",
"test": "jest --forceExit --verbose",
"release": "standard-version",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aleksandryackovlev/icq-bot-sdk.git"
},
"files": [
"dist/"
],
"author": "Aleksandr Yackovlev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aleksandryackovlev/icq-bot-sdk/issues"
},
"homepage": "https://github.com/aleksandryackovlev/icq-bot-sdk#readme",
"keywords": [
"icq",
"icq-new",
"icq-bot",
"bot",
"sdk",
"client",
"icq-sdk"
],
"husky": {
"hooks": {
"pre-commit": "./scripts/process-staged-files"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"openapi-client-sdk-loader": "^2.0.7",
"standard-version": "^9.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"form-data": "^3.0.0",
"node-fetch": "^2.6.0"
}
}