-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.93 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
{
"name": "@codestra/authentication-manager",
"version": "1.2.6",
"description": "Full authentication helper functions",
"main": "lib/index.js",
"scripts": {
"test": "jest --config jestconfig.json",
"test:dev": "jest --config jestconfig.dev.json --watch",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src && yarn build:doc",
"postversion": "git push && git push --tags",
"dev": "tsc --watch",
"badges": "auto-badger",
"build:doc": "jsdoc2md --partial main.hbs scope.hbs --files './src/**/*.ts' --configure ./jsdoc2md.json > README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codestra/authentication-manager.git"
},
"keywords": [
"mongoose",
"authentication"
],
"author": "codestra",
"license": "MIT",
"bugs": {
"url": "https://github.com/codestra/authentication-manager/issues"
},
"homepage": "https://github.com/codestra/authentication-manager#readme",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^26.0.24",
"codecov": "^3.1.0",
"jest": "^27.0.6",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^7.0.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@babel/preset-env": "^7.15.0",
"@types/jsonwebtoken": "^8.5.5",
"babel-jest": "^27.0.6",
"git-auto-badger": "^1.0.22",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server": "^7.3.2",
"mongoose": "^5.13.3",
"tslint": "^6.1.3"
},
"publishConfig": {
"@codestra:registry": "https://npm.pkg.github.com"
}
}