forked from inorganik/digest-auth-request
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "digest-auth-request-ts",
"version": "0.0.1",
"description": "Make digest-auth requests with typescript",
"main": "dist/index.min.js",
"types": "dist/index.d.ts",
"dependencies": {
"request": "^2.88.0"
},
"scripts": {
"build": "webpack --env build -y",
"format": "prettier --write './src/**/*.ts' './spec/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artem7902/digest-auth-request.git"
},
"keywords": [
"digest",
"auth",
"javascript",
"typescript"
],
"author": "@inorganik, artem7902",
"license": "MIT",
"bugs": {
"url": "https://github.com/artem7902/digest-auth-request/issues"
},
"homepage": "https://github.com/artem7902/digest-auth-request#readme",
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/request": "^2.48.1",
"clean-webpack-plugin": "^2.0.2",
"prettier": "^1.17.1",
"ts-loader": "^6.0.1",
"typescript": "^3.4.5",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-node-externals": "^1.7.2"
}
}