-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "@cryptr/cryptr-config-validation",
"version": "1.0.0",
"description": "Cryptr client validator library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"make-badges": "istanbul-badges-readme",
"test": "jest --config jest.config.json && npm run make-badges && yarn build",
"test:watch": "jest --config jest.config.json --watch && npm run make-badges && yarn build",
"unpublish": "npm unpublish ${npm_package_name}@${npm_package_version} --force",
"publish-force": "npm run unpublish && npm run build && ls && npm run publish:lib",
"publish": "npm run build && ls && npm run publish:lib",
"publish:lib": "npm publish"
},
"author": "Cryptr <thibaud@cryptr.co> (https://www.cryptr.co)",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"istanbul-badges-readme": "^1.8.5",
"jest": "^29.7.0",
"typescript": "^5.3.3"
},
"dependencies": {},
"keywords": [
"cryptr",
"Authentication",
"oAuth",
"Config",
"validator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cryptr-auth/cryptr-config-validation.git"
},
"bugs": {
"url": "https://github.com/cryptr-auth/cryptr-config-validation/issues"
},
"homepage": "https://github.com/cryptr-auth/cryptr-config-validation#readme"
}