-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.65 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
{
"name": "@plq/faker",
"version": "1.1.1",
"description": "A set of classes for mocking known data types such as browser history, browser download list, persona, domain name, Jira project, GitHub repository, etc.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint ./src/**/*.ts",
"test": "jest",
"build": "tsc",
"release": "dotenv release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akurganow/faker.git"
},
"release-it": {
"hooks": {
"before:init": [
"npm run lint",
"npm test",
"npm run build"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
}
},
"keywords": [
"javascript",
"typescript",
"array",
"sort",
"filter",
"isSorted"
],
"author": "Alexander Kurganov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Akurganow/faker/issues"
},
"homepage": "https://github.com/Akurganow/faker#readme",
"devDependencies": {
"@release-it/conventional-changelog": "^7.0.2",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"dotenv-cli": "^7.3.0",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"release-it": "^16.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@faker-js/faker": "^8.1.0",
"@plq/array-functions": "^1.5.0",
"@plq/is": "^1.3.0",
"@types/chrome": "^0.0.246",
"@types/node": "^20.8.4"
}
}