-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "@ricveal/basic-auth-utils",
"version": "0.0.0-semantically-released",
"description": "Utils to work with Basic Authentication",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [],
"author": "Ricardo Vega - ricveal <[email protected]> (https://ricveal.com)",
"license": "MIT",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/ricveal/basic-auth-utils"
},
"bugs": {
"url": "https://github.com/ricveal/basic-auth-utils/issues"
},
"homepage": "https://github.com/ricveal/basic-auth-utils#readme",
"files": [
"dist"
],
"scripts": {
"build": "ricveal-scripts build",
"lint": "ricveal-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "ricveal-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"typecheck": "ricveal-scripts typecheck",
"validate": "ricveal-scripts validate"
},
"dependencies": {
"@babel/runtime": "^7.12.5"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"ricveal-scripts": "^1.0.1",
"typescript": "^4.2.4"
},
"eslintConfig": {
"extends": "./node_modules/ricveal-scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
]
}