-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.3 KB
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
{
"name": "cpf-check",
"version": "3.0.0",
"description": "Validador de CPF Moderno, Isomórfico e Super Leve.",
"main": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"source": "src/index.ts",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && cross-env NODE_ENV=production microbundle --no-sourcemap --name CPF && rimraf dist/index.test.d.ts",
"coverage": "cross-env NODE_ENV=test jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "tslint src/** ",
"prebuild": "npm run test && npm run lint",
"prepublishOnly": "npm run build",
"test": "cross-env NODE_ENV=test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flasd/cpf-check.git"
},
"keywords": [
"cpf",
"validar",
"validator"
],
"author": "Marcel Coelho",
"license": "MIT",
"bugs": {
"url": "https://github.com/flasd/cpf-check/issues"
},
"homepage": "https://github.com/flasd/cpf-check#readme",
"devDependencies": {
"@types/jest": "^24.0.11",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"jest": "^24.7.1",
"microbundle": "^0.11.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.4"
}
}