generated from techmmunity/base-project-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "@techmmunity/utils",
"version": "1.10.1",
"main": "index.js",
"types": "index.d.ts",
"license": "Apache-2.0",
"author": "Techmmunity",
"description": "Lightweight utils for every project",
"homepage": "https://github.com/techmmunity/utils#readme",
"bugs": {
"url": "https://github.com/techmmunity/utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techmmunity/utils.git"
},
"keywords": [
"utils",
"clean-obj",
"object",
"array",
"lodash",
"ramda",
"get-enum-values",
"unnest",
"plain-object",
"odd",
"alphanumeric",
"between",
"cpf",
"cnpj",
"aspect-ratio",
"gcd",
"empty-array",
"empty-object"
],
"devDependencies": {
"@techmmunity/eslint-config": "^5.1.2",
"@types/jest": "^27.0.2",
"@vercel/ncc": "^0.33.0",
"eslint": "^8.1.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^12.0.2",
"prettier": "^2.3.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.3.5"
},
"scripts": {
"prepare": "husky install",
"ts-node": "ts-node",
"test": "jest",
"test:cov": "jest --coverage",
"build": "ncc build src/index.ts -o dist -m -s",
"format": "eslint . --fix --quiet",
"lint": "eslint . --quiet",
"upgrade-dependencies": "yarn upgrade-interactive --latest",
"husky:pre-commit": "tsc",
"lk": "yarn build && cp package.json dist/package.json && cd dist && yarn link && cd ..",
"ulk": "yarn unlink && yarn lk"
}
}