-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.61 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.61 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
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
85
86
87
88
89
90
91
92
93
{
"name": "create-geofs-plugin",
"version": "0.3.1",
"description": "Create a plugin for GeoFS Plugin System.",
"bin": "index.js",
"scripts": {
"build": "rollup --config",
"check-format": "prettier --check --ignore-path=.gitignore .",
"check-spelling": "cspell --config=.cspell.json \"**/*.{md,mdx,ts,js,tsx,jsx}\"",
"lint": "eslint --ignore-path=.gitignore .",
"prepare": "husky install",
"prettier": "prettier --write --ignore-path=.gitignore .",
"release": "standard-version",
"release:prerelease": "standard-version --prerelease alpha",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"test": "npm run lint"
},
"files": [
"bin",
"templates"
],
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpsystem/create-geofs-plugin.git"
},
"keywords": [],
"contributors": [
"Nicolas Rodriguez (https://github.com/nicolas377)"
],
"author": "GeoFS Plugin System",
"license": "ISC",
"bugs": {
"url": "https://github.com/gpsystem/create-geofs-plugin/issues"
},
"homepage": "https://github.com/gpsystem/create-geofs-plugin#readme",
"dependencies": {
"@colors/colors": "~1.5.0",
"commander": "~9.3.0",
"fs-extra": "~10.1.0",
"inquirer": "~8.2.4",
"klaw": "~4.0.1",
"lodash": "~4.17.21",
"simple-git": "~3.7.1",
"validate-npm-package-name": "~4.0.0"
},
"devDependencies": {
"@commitlint/cli": "~17.0.2",
"@commitlint/config-conventional": "~17.0.2",
"@rollup/plugin-json": "~4.1.0",
"@rollup/plugin-typescript": "~8.3.2",
"@types/fs-extra": "~9.0.13",
"@types/inquirer": "~8.2.1",
"@types/klaw": "~3.0.3",
"@types/lodash": "~4.14.182",
"@types/node": "~17.0.40",
"@types/validate-npm-package-name": "~3.0.3",
"@typescript-eslint/eslint-plugin": "~5.27.0",
"cspell": "~6.1.1",
"eslint": "~8.17.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-react": "~7.30.0",
"husky": "~8.0.1",
"prettier": "~2.6.2",
"rollup": "~2.75.5",
"standard-version": "~9.5.0",
"typescript": "~4.7.3"
},
"standard-version": {
"scripts": {
"postchangelog": "npm run prettier",
"postbump": "npm i --packageJsonOnly"
},
"bumpFiles": [
{
"filename": "src/version.json",
"type": "json"
},
{
"filename": "package.json",
"type": "json"
},
{
"filename": "package-lock.json",
"type": "json"
}
]
}
}