-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "crypto-driver",
"version": "2.0.5",
"private": false,
"description": "CriptoDriver class related to cipher and decipher of data.",
"keywords": [
"class",
"javascript",
"crypto",
"decipher",
"cipher",
"encrypt",
"decrypt",
"encrypted",
"decrypted"
],
"directories": {
"doc": "docs",
"test": "test"
},
"homepage": "https://github.com/vgbr-dev/crypto-driver#readme",
"bugs": {
"url": "https://github.com/vgbr-dev/crypto-driver/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vgbr-dev/crypto-driver.git"
},
"author": {
"name": "Victor Giovanni Beltrán Rodríguez",
"email": "[email protected]",
"url": "https://vgbr-dev.blogspot.com"
},
"contributors": [
{
"name": "Victor Giovanni Beltrán Rodriguez",
"email": "[email protected]",
"url": "https://vgbr-dev.blogspot.com"
}
],
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test node --test test/",
"develop": "node --watch develop.js",
"lint": "npx eslint",
"prepare": "husky install",
"prepublish": "npm test"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.5",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^41.1.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7"
}
}