-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.92 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
{
"name": "@sayjava/phake-cli",
"version": "1.1.0",
"description": "Effortlessly Generate Realistic Mock Data with Ease using Handlebars and Fakerjs",
"main": "lib/main.js",
"files": [
"lib"
],
"bin": {
"phake": "lib/main.js"
},
"scripts": {
"lint": "ts-standard",
"test": "jest",
"dev": "ts-node src/main.ts",
"gen:github": "ts-node src/main.ts compile -t ./fixtures/github.json.hbs",
"build": "tsc",
"release": "semantic-release",
"prettify": "prettier --write --ignore-unknown src"
},
"keywords": [
"fakerjs",
"handlebars",
"sample-data-generator",
"fake-generator",
"mock",
"mock data"
],
"author": "Raymond Ottun",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^8.0.2",
"handlebars": "^4.7.7",
"object-path": "^0.11.8",
"trianglify": "^4.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.3",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/yargs": "^17.0.24",
"prettier": "^2.8.8",
"semantic-release": "^21.0.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/sayjava/phake.git"
},
"publishConfig": {
"access": "public"
},
"release": {
"ci": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
[
"@semantic-release/github"
]
],
"branches": [
"main"
]
},
"ts-standard": {
"ignore": [
"lib",
"web",
"fixtures",
"src/**/*.js",
"src/**/*.test.ts"
]
}
}