-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@soufantech/ephemeral-codes",
"version": "1.0.0",
"description": "Manages temporary codes for password recovery, user registration and other use-cases.",
"keywords": [
"redis",
"token",
"code",
"password",
"registration"
],
"main": "./src/index.js",
"exports": {
"require": "./src/index.js",
"import": "./wrapper.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/soufantech/ephemeral-codes.git"
},
"homepage": "https://github.com/soufantech/ephemeral-codes#readme",
"bugs": {
"url": "https://github.com/soufantech/ephemeral-codes/issues"
},
"license": "MIT",
"publishConfig": {
"access:": "public"
},
"author": {
"name": "Fábio Priamo",
"email": "fabio@soufan.com.br",
"url": "https://github.com/fhpriamo"
},
"contributors": [
{
"name": "Rodrigo F. Martins",
"email": "rodrigo@soufan.com.br",
"url": "https://github.com/drigos"
}
],
"private": false,
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"lint": "eslint ./src",
"prepublishOnly": "npm run test --silent"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"ioredis": "^4.19.4",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}