-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.22 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
{
"name": "brazil-mocker",
"version": "1.1.9",
"main": "lib/index.js",
"license": "MIT",
"types": "lib",
"description": "A javascript lib to make brazilian dev life easier!",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon",
"test": "jest",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"build": "tsc -p .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublish": "tsc -p .",
"precommit-msg": "echo 'Pre-commit checks 🤔' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint",
"test"
],
"devDependencies": {
"@types/jest": "^24.9.0",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"jest": "^24.9.0",
"pre-commit": "^1.2.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"tsc": "^1.20150623.0",
"typescript": "^3.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Aldrie/BrazilMocker"
},
"keywords": [
"brazil",
"brasil",
"mocker",
"faker",
"fake",
"test",
"generator",
"cpf",
"cnpj",
"name"
],
"dependencies": {
"canvas": "^2.6.1"
}
}