forked from egermano/brazilian-multidocument-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "br-doc-validator",
"version": "1.1.4",
"description": "Helper library to validate Brazilians documents as CPF and CNPJ.",
"main": "bin/multidocument_validator.js",
"types": "bin/multidocument_validator.d.ts",
"repository": "git@github.com:egermano/brazilian-multidocument-validator.git",
"bugs": {
"url": "https://github.com/egermano/brazilian-multidocument-validator/issues"
},
"homepage": "https://github.com/egermano/brazilian-multidocument-validator#readme",
"author": "Bruno Germano <bruno.germano@gmail.com>",
"keywords": [
"Brasil",
"Validator",
"Documents",
"CPF",
"CNPJ"
],
"license": "Apache-2.0",
"private": false,
"dependencies": {},
"scripts": {
"build": "tsc -p ./tsconfig.json --declaration",
"lint": "tslint -c tslint.json -p tsconfig.json -t verbose",
"test": "jest",
"start": "tsc -w -p ./tsconfig.json",
"prepare": "$npm_execpath build",
"prepublishOnly": "$npm_execpath run lint && $npm_execpath test",
"preversion": "$npm_execpath run lint"
},
"devDependencies": {
"@types/jest": "^22.1.0",
"@types/node": "^8.0.47",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.8.2"
},
"files": [
"bin/**/*"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}