This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
{
"name": "fluentfaker",
"version": "1.0.0",
"description": "Create fake data with fakerjs using a fluent api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "yarn lint",
"test": "jest",
"prepublishOnly": "yarn build",
"validate": "yarn test && yarn lint",
"precommit": "yarn validate",
"prepush": "yarn validate",
"commitmsg": "commitlint -e .git/COMMIT_EDITMSG"
},
"keywords": [
"fakerjs",
"fluentapi",
"nodemodule",
"typescript",
"es6",
"tdd",
"fakedata"
],
"author": {
"name": "Nicolas Takashi",
"email": "[email protected]",
"url": "https://medium.com/@nicolastakashi"
},
"repository": {
"type": "git",
"url": "https://github.com/nicolastakashi/fluent-fakerjs"
},
"license": "MIT",
"dependencies": {
"faker": "^4.1.0",
"form-data": "^2.3.2"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@types/faker": "^4.1.2",
"@types/form-data": "^2.2.1",
"@types/jest": "^22.2.3",
"husky": "^0.14.3",
"jest": "^22.4.3",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"bugs": {
"url": "https://github.com/nicolastakashi/fluent-fakerjs/issues"
},
"jest": {
"moduleFileExtensions": ["ts", "tsx", "js"],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"collectCoverage": true,
"testPathIgnorePatterns": ["/dist/"]
}
}