-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.9 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
{
"name": "@mapeo/mock-data",
"version": "2.1.2",
"description": "Module and CLI to generate mock data for Mapeo",
"keywords": [
"mapeo",
"fake",
"data"
],
"author": {
"name": "Andrew Chou",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"bin": {
"list-mapeo-schemas": "bin/list-mapeo-schemas.js",
"generate-mapeo-data": "bin/generate-mapeo-data.js"
},
"scripts": {
"prepare": "husky install",
"format": "prettier --write .",
"test:eslint": "eslint . --cache",
"test:prettier": "prettier --check **/*.js",
"test:typescript": "npm run type",
"test:node": "node --test",
"test": "npm-run-all --aggregate-output --print-label --parallel test:*",
"type": "tsc",
"prepack": "npm run type"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"dereference-json-schema": "^0.2.1",
"json-schema-faker": "^0.5.8",
"type-fest": "^4.29.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.9.1",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@comapeo/schema": "^1.1.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
},
"lint-staged": {
"*.{js,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digidem/mapeo-mock-data.git"
},
"bugs": {
"url": "https://github.com/digidem/mapeo-mock-data/issues"
},
"homepage": "https://github.com/digidem/mapeo-mock-data#readme"
}