-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
81 lines (81 loc) · 2.01 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
{
"name": "storyblok",
"version": "3.25.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": "./dist/cli.mjs",
"files": [
"dist/**"
],
"bin": {
"storyblok": "./dist/cli.mjs"
},
"type": "module",
"scripts": {
"build": "unbuild",
"dev": "npm run build && ./dist/cli.mjs",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test:unit": "node --experimental-vm-modules ./node_modules/.bin/jest --silent",
"test:coverage": "node --experimental-vm-modules ./node_modules/.bin/jest --coverage"
},
"author": "Dominik Angerer <dominikangerer1@gmail.com>, Alexander Feiglstorfer <delooks@gmail.com>",
"license": "MIT",
"dependencies": {
"@storyblok/region-helper": "^1.0.0",
"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",
"json-schema-to-typescript": "^13.1.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": "^6.9.1",
"update-notifier": "^5.1.0",
"xml-js": "^1.6.11"
},
"engines": {
"node": ">=18.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": "^29.7.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"release": {
"branches": [
"master"
]
},
"prettier": {
"printWidth": 120
}
}