-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.78 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
67
68
69
70
{
"name": "@4us-dev/crypto",
"version": "0.1.1",
"description": "Utility classes to assist developers during software development",
"author": "Clairton Luz <clairton.c.l@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/4us-dev/crypto#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf ./lib && tsc",
"docs": "typedoc --out docs --mode modules",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"test": "jest --watchAll=false",
"coverage": "jest --coverage --coverageReporters=lcov --watchAll=false",
"prepare": "npm run build && npm test",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@4us-dev/utils": "^0.0.13"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.1",
"pinst": "^2.1.6",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.4",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4us-dev/crypto.git"
},
"bugs": {
"url": "https://github.com/4us-dev/crypto/issues"
},
"keywords": [
"crypto",
"hash",
"base64",
"base64url",
"sha1",
"sha256",
"md5",
"4us dev",
"4us",
"dev",
"developer",
"developers",
"browser",
"node",
"Node.JS",
"react",
"angular",
"typescript",
"javascript"
]
}