-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.52 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
{
"name": "faker-es6",
"version": "0.1.1",
"description": "A heavily inspired lib to generate massive amounts of realistic fake data. This lib was inspired by what I would like to see in Marak/faker.js plus I though it could be a good exercise",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "git@github.com:samir-araujo/faker-es6.git",
"author": "Samir J M Araujo <samir.blanc@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"agadoo": "^2.0.0",
"babel-jest": "^25.2.4",
"commitizen": "^4.0.3",
"coveralls": "^3.0.11",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "3.1.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"lint-staged": ">=10",
"lodash": "^4.17.15",
"np": "^6.2.0",
"randexp": "^0.5.3",
"semantic-release": "^17.0.4",
"ts-jest": "^25.3.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"commit": "git-cz",
"build": "tsc",
"lint": "eslint '**/*.ts' --fix --ignore-pattern node_modules/ --ignore-pattern lib/",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "agadoo index.ts"
},
"resolutions": {
"minimist": "^1.2.5"
},
"bugs": {
"url": "https://github.com/samir-araujo/faker-es6/issues",
"email": "samir.blanc@gmail.com"
},
"keywords": [
"faker",
"faker-es6",
"mock",
"mocking",
"fake-content",
"fake",
"generator",
"data",
"data-generator",
"javascript",
"es6",
"typescript",
"jest",
"testing",
"test"
],
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-push": "yarn test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}