-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "@qvant/mocked-segments-generator",
"version": "0.0.1",
"description": "Utility for generation mocked files with specific entries",
"author": "Qvant Frontend team",
"license": "Apache-2.0",
"private": false,
"main": "index.js",
"bin": "./index.js",
"prettier": "@qvant/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/Qvant-lab/mocked-segments-generator.git"
},
"keywords": [
"utility",
"generator"
],
"bugs": {
"url": "https://github.com/Qvant-lab/mocked-segments-generator/issues"
},
"homepage": "https://github.com/Qvant-lab/mocked-segments-generator#readme",
"scripts": {
"prettier": "prettier --check --ignore-unknown '**/*'",
"prettier:fix": "prettier --write --ignore-unknown '**/*'",
"prepare": "husky install"
},
"dependencies": {
"faker": "5.5.3",
"inquirer": "^8.2.4",
"md5": "^2.3.0",
"sha.js": "^2.4.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@qvant/prettier-config": "^0.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
}
}