-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "validate-rfc",
"version": "2.0.3",
"description": "A simple library to validate Mexican RFCs (Tax IDs)",
"main": "dist/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "./node_modules/rollup/dist/bin/rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuelmhtr/validate-rfc.git"
},
"keywords": [
"RFC",
"validator",
"validar",
"validador",
"verificar",
"verify",
"Registro Federal de Contribuyentes",
"Mexico",
"Mexican"
],
"author": "Manuel de la Torre",
"license": "MIT",
"bugs": {
"url": "https://github.com/manuelmhtr/validate-rfc/issues"
},
"homepage": "https://github.com/manuelmhtr/validate-rfc#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^28.1.3",
"rollup": "^2.77.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {}
}