-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "node-masker",
"version": "1.0.7",
"description": "node-masker is a javascript mask library made in TypeScript",
"main": "build/index.js",
"repository": "[email protected]:marcelodosreis/node-masker.git",
"author": "marcelodosreis <[email protected]>",
"license": "MIT",
"keywords": [
"mask",
"react-mask",
"react"
],
"scripts": {
"lint": "eslint lib/**/*.{js,jsx,ts,tsx}",
"build": "rm -rf build && tsc -p . && cp package_build.json README.md ./build && mv ./build/package_build.json ./build/package.json",
"test": "jest --no-cache --coverage",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-jest": "^29.2.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"coveralls": "^3.1.1",
"jest": "^29.7.0"
}
}