-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.53 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.53 KB
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
{
"name": "@eigenspace/nodejs-http-client",
"version": "1.0.16",
"license": "UNLICENSED",
"description": "The adaptor for base http client",
"main": "index.js",
"author": "Nikita Agupov <nktrsk@gmail.com>",
"contributors": [
"Anton Kalashnikov <tohasan@yandex.ru>",
"Daniil Sitdikov <hello.boriskas@gmail.com>",
"Nikita Sergeev <sergeev.nickitos@yandex.ru>",
"Nikita Agupov <nktrsk@gmail.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eigen-space/nodejs-http-client.git"
},
"bugs": {
"url": "https://github.com/eigen-space/nodejs-http-client/issues"
},
"homepage": "https://github.com/eigen-space/nodejs-http-client#readme",
"scripts": {
"build": "webpack --config=config/webpack/webpack.config.prod.js --progress",
"lint:code": "eslint --ext .ts",
"lint:fix": "yarn lint:code --fix",
"lint:markdown": "node ./node_modules/@eigenspace/codestyle/scripts/markdown-lint.js",
"lint": "yarn lint:code . && yarn lint:markdown",
"deploy:publish": "node node_modules/@eigenspace/helper-scripts/scripts/ci/publish",
"hooks:pre-push": "yarn lint && yarn build",
"hooks:pre-commit": "lint-staged",
"script:update-deps-remote": "npx -p @eigenspace/helper-scripts update-deps"
},
"husky": {
"hooks": {
"pre-push": "yarn hooks:pre-push",
"pre-commit": "lint-staged",
"commit-msg": "commit-linter --message=COMMIT_MESSAGE"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix",
"git add"
]
},
"dependencies": {
"@eigenspace/base-http-client": "1.0.15",
"@eigenspace/url-replacer": "1.0.6",
"form-data": "3.0.0",
"json-bigint": "1.0.0",
"node-fetch": "2.6.1"
},
"devDependencies": {
"@eigenspace/codestyle": "latest",
"@eigenspace/commit-linter": "latest",
"@eigenspace/common-types": "0.0.20",
"@eigenspace/helper-scripts": "3.0.7",
"@types/json-bigint": "1.0.1",
"@types/node-fetch": "2.5.7",
"clean-webpack-plugin": "2.0.2",
"copy-webpack-plugin": "4.6.0",
"eslint": "7.9.0",
"eslint-plugin-eigenspace-script": "latest",
"husky": "2.3.0",
"lint-staged": "8.1.7",
"ts-loader": "6.2.1",
"typescript": "3.8.2",
"webpack": "4.32.0",
"webpack-cli": "4.2.0",
"webpack-node-externals": "3.0.0"
}
}