-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "node-factory",
"version": "0.4.2",
"description": "Easy way to generate random data for your tests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"docs:dev": "yarn docz dev",
"docs:build": "docz build --base /node-factory/",
"docs:deploy": "yarn docs:build && gh-pages -d .docz/dist"
},
"files": [
"dist/**/*"
],
"author": {
"name": "Olavo Amorim Santos",
"email": "[email protected]"
},
"homepage": "https://olavoasantos.github.io/node-factory/",
"repository": {
"type": "git",
"url": "https://github.com/olavoasantos/node-factory.git"
},
"license": "MIT",
"keywords": [
"data factory",
"testing"
],
"dependencies": {
"@types/faker": "^5.5.7",
"faker": "^5.5.3"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"docz": "^1.3.1",
"docz-theme-default": "^1.2.0",
"gh-pages": "^2.2.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
}
}