-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
105 lines (105 loc) · 2.56 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@storyblok/create-demo",
"description": "A CLI tool for quickly starting a Storyblok project",
"version": "1.0.1",
"author": "Alexander Feiglstorfer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": [
{
"name": "Lisi Linhart",
"url": "https://github.com/lisilinhart"
},
{
"name": "Roberto Butti",
"url": "https://github.com/roberto-butti"
}
],
"bin": {
"create-demo": "bin/run"
},
"files": [
"/bin",
"/src",
"/dist",
"/templates",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"bugs": {
"url": "https://github.com/storyblok/storyblok-create-demo/issues"
},
"scripts": {
"lint": "eslint ./src --ext .ts --config .eslintrc",
"build": "shx rm -rf dist && tsc -b",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@oclif/core": "^2.8.4",
"@oclif/plugin-help": "^5.2.9",
"@oclif/plugin-plugins": "^3.0.1 ",
"chalk": "^4.1.2",
"inquirer": "^8.2.4",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@oclif/test": "^2.3.17",
"@types/chai": "^4",
"@types/inquirer": "^9.0.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.25",
"@types/node-fetch": "^2.6.4",
"chai": "^4",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"mocha": "^9",
"oclif": "^3",
"rimraf": "^5.0.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "@storyblok/create-demo",
"dirname": "@storyblok/create-demo",
"default": "default",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
},
"homepage": "https://github.com/storyblok/storyblok-create-demo",
"keywords": [
"CLI",
"Storyblok",
"project starter",
"command line tool"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/storyblok/storyblok-create-demo.git"
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
]
}
}