-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.81 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
{
"name": "@4us-dev/utils",
"version": "0.0.15",
"description": "Utility classes to assist developers during software development",
"author": "Clairton Luz <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/4us-dev/utils#readme",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "rimraf ./lib && tsc",
"docs": "typedoc --out docs src/index.ts",
"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"
},
"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",
"ts-node": "^10.2.1",
"typedoc": "^0.22.4",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4us-dev/utils.git"
},
"bugs": {
"url": "https://github.com/4us-dev/utils/issues"
},
"keywords": [
"util",
"utils",
"utility",
"helper",
"tools",
"string",
"number",
"format",
"cep",
"cpf",
"phone",
"isBlank",
"isEmpty",
"formater",
"4us",
"dev",
"developer",
"developers",
"browser",
"node",
"typescript",
"javascript"
],
"dependencies": {}
}