-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "mask-hooks",
"version": "3.3.2",
"description": "Lightweight package with functions and hooks for masking data inputs and outputs for Node.JS projects",
"main": "dist/common/index.js",
"module": "dist/module/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc --project tsconfig.json && tsc --project tsconfig.m.json",
"minify": "minify-all-js .\\dist\\ -m",
"publish:ps": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./bin/publish.ps1",
"publish:sh": "sh ./bin/publish.sh"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/guilhermeasn/mask-hooks.git"
},
"keywords": [
"mask",
"hooks",
"input",
"useMask"
],
"author": "Guilherme Augusto Neves <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/guilhermeasn/mask-hooks/issues"
},
"homepage": "https://github.com/guilhermeasn/mask-hooks#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"minify-all-js": "^0.1.9",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}