UNPKG

2.49 kBJSONView Raw
1{
2 "name": "sb-mig",
3 "version": "2.2.1",
4 "description": "CLI to rule the world. (and handle stuff related to Storyblok CMS)",
5 "author": "Marcin Krawczyk <marckraw@icloud.com>",
6 "bin": {
7 "sb-mig": "./bin/run"
8 },
9 "bugs": "https://github.com/sb-mig/sb-mig/issues",
10 "dependencies": {
11 "@oclif/command": "^1.6.1",
12 "@oclif/config": "^1",
13 "@oclif/plugin-help": "^2",
14 "@oclif/plugin-plugins": "^1.7.10",
15 "@oclif/plugin-warn-if-update-available": "^1.7.0",
16 "@types/ncp": "^2.0.3",
17 "camelcase": "^5.3.1",
18 "dotenv": "^8.2.0",
19 "execa": "^4.0.0",
20 "figlet": "^1.3.0",
21 "glob": "^7.1.6",
22 "ncp": "^2.0.0",
23 "ora": "^4.0.4",
24 "rimraf": "^3.0.2",
25 "storyblok-js-client": "^2.4.0",
26 "tslib": "^1"
27 },
28 "devDependencies": {
29 "@oclif/dev-cli": "^1",
30 "@oclif/test": "^1",
31 "@types/chai": "^4",
32 "@types/figlet": "^1.2.0",
33 "@types/mocha": "^5",
34 "@types/node": "^10",
35 "chai": "^4",
36 "conventional-changelog-cli": "^2.0.31",
37 "eslint": "^5.13",
38 "eslint-config-oclif": "^3.1",
39 "eslint-config-oclif-typescript": "^0.1",
40 "globby": "^10",
41 "mocha": "^5",
42 "nyc": "^14",
43 "ts-node": "^8",
44 "typescript": "^3.3"
45 },
46 "engines": {
47 "node": ">=8.0.0"
48 },
49 "files": [
50 "/bin",
51 "/lib",
52 "/npm-shrinkwrap.json",
53 "/oclif.manifest.json"
54 ],
55 "homepage": "https://helper.sb-mig.com",
56 "keywords": [
57 "cli",
58 "storyblok",
59 "sb",
60 "migrate"
61 ],
62 "license": "MIT",
63 "main": "lib/index.js",
64 "oclif": {
65 "commands": "./lib/commands",
66 "bin": "sb-mig",
67 "scope": "sb-mig",
68 "plugins": [
69 "@oclif/plugin-help",
70 "@oclif/plugin-plugins",
71 "@oclif/plugin-warn-if-update-available"
72 ],
73 "warn-if-update-available": {
74 "timeoutInDays": 3,
75 "message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>."
76 }
77 },
78 "repository": {
79 "type": "git",
80 "url": "git+https://github.com/sb-mig/sb-mig.git"
81 },
82 "scripts": {
83 "postpack": "rm -f oclif.manifest.json",
84 "posttest": "eslint . --ext .ts --config .eslintrc",
85 "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
86 "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
87 "version": "conventional-changelog -p eslint -i CHANGELOG.md -s && oclif-dev readme && git add README.md && git add CHANGELOG.md"
88 },
89 "types": "lib/index.d.ts"
90}