forked from olavoasantos/node-factory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "node-factory",
"version": "0.3.5",
"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\" \"src/**/*.js\"",
"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": "olavo.a.santos@gmail.com"
},
"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": {
"faker": "^4.1.0"
},
"devDependencies": {
"@types/faker": "^4.1.7",
"@types/jest": "^24.0.23",
"docz": "^1.3.1",
"docz-theme-default": "^1.2.0",
"gh-pages": "^2.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
}
}