-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
142 lines (142 loc) · 4.98 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "gerador-validador-cpf",
"version": "5.0.2",
"description": "Biblioteca JS open-source para gerar, validar e formatar CPF.",
"homepage": "http://tiagoporto.github.io/gerador-validador-cpf",
"keywords": [
"cpf",
"gerador",
"generator",
"generates",
"validador",
"valida",
"validates"
],
"author": {
"name": "Tiago Porto",
"url": "http://tiagoporto.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tiagoporto/gerador-validador-cpf.git"
},
"main": "./dist/CPF.umd.js",
"module": "./dist/CPF.es.js",
"typings": "./dist/CPF.d.ts",
"files": [
"/dist",
"/README-en.md"
],
"license": "MIT",
"scripts": {
"prepare": "husky install",
"start": "webpack serve --hot --config webpack.config.dev.js",
"check-docs": "remark --frail .",
"lint": "eslint --ext js,jsx,ts,tsx,md,mdx ./src --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"checks": "npm run check-docs && npm run check-formatting && npm run check-typing && npm run lint",
"check-typing": "tsc --project tsconfig.json",
"check-formatting": "prettier --check --ignore-unknown \"**/*\"",
"formatting:fix": "npm run check-formatting -- --write",
"test": "jest",
"test:bundle": "jest --config ./jest/es.config.js && jest --config ./jest/umd.config.js",
"test:watch": "npm test -- --watch",
"test:mutation": "stryker run --reporters html",
"test:mutation-report": "stryker run --reporters dashboard",
"test:coverage": "npm test -- --coverage",
"types": "tsc ./src/lib/CPF.ts --skipLibCheck --declarationDir dist --emitDeclarationOnly --declaration",
"build:site": "rm -rf website && webpack --config webpack.config.prod.js",
"build": "rollup --config --bundleConfigAsCjs",
"deploy": "npm run build:site && npx gh-pages -d website",
"release": "release-it",
"prepack": "rm -rf dist && npm run build && npm run types",
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@release-it/conventional-changelog": "^5.1.1",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@stryker-mutator/core": "^6.2.3",
"@stryker-mutator/jest-runner": "^6.2.3",
"@types/jest": "^29.2.0",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^17.0.0",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.25.5",
"css-loader": "^5.2.7",
"cssnano": "^5.1.13",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsdoc": "^39.3.14",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-testing-library": "^5.8.0",
"eslint-plugin-unicorn": "^44.0.2",
"file-loader": "^6.2.0",
"highlight.js": "^11.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"i18next": "^19.8.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.1",
"jest-css-modules-transform": "^4.4.2",
"json-map-keys-loader": "^1.0.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"normalize.css": "^8.0.1",
"postcss-combine-media-query": "^1.0.1",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.1",
"react-ga": "^3.3.1",
"react-github-corner": "^2.5.0",
"react-i18next": "^11.18.6",
"react-imask": "^6.0.5",
"react-toastify": "^6.2.0",
"release-it": "^15.5.0",
"remark-cli": "^11.0.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-lint-no-url-trailing-slash": "^3.0.1",
"remark-validate-links": "^12.1.0",
"rollup": "^3.2.3",
"rollup-plugin-license": "^2.8.2",
"rollup-plugin-terser": "^7.0.2",
"style-loader": "^3.3.1",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"workbox-webpack-plugin": "^6.5.4"
}
}