forked from storyblok/storyblok-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.6 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
{
"name": "storyblok",
"version": "3.15.0",
"description": "A simple CLI to start Storyblok from your command line.",
"repository": {
"type": "git",
"url": "https://github.com/storyblok/storyblok-cli.git"
},
"keywords": [
"storyblok",
"cli",
"node",
"javascript"
],
"main": "src/cli.js",
"bin": {
"storyblok": "src/cli.js"
},
"scripts": {
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "jest --silent",
"test:coverage": "jest --coverage"
},
"author": "Dominik Angerer <[email protected]>, Alexander Feiglstorfer <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.0",
"clear": "0.1.0",
"commander": "^5.1.0",
"fast-csv": "^4.3.6",
"figlet": "^1.5.0",
"form-data": "^3.0.0",
"fs-extra": "^9.0.1",
"git-clone": "^0.1.0",
"inquirer": "^7.3.2",
"lodash": "^4.17.21",
"netrc": "0.1.4",
"on-change": "^2.0.1",
"open": "^6.0.0",
"p-series": "^2.1.0",
"path": "^0.12.7",
"simple-uuid": "^0.0.1",
"storyblok-js-client": "^4.5.6",
"update-notifier": "^5.1.0",
"xml-js": "^1.6.11"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0"
},
"release": {
"branches": [
"master"
]
}
}