UNPKG

storyblok-ts-client

Version:

Typescript library for working with Storyblok management API.

79 lines (78 loc) 2.31 kB
{ "name": "storyblok-ts-client", "version": "4.7.0", "description": "Typescript library for working with Storyblok management API.", "main": "./dist/index.js", "types": "./dist/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/chiayutsaipersonal/storyblok-ts-client.git" }, "keywords": [ "Storyblok", "node.js", "typescript", "Storyblok Mangement API" ], "engines": { "node": ">=8.12.0", "npm": ">=6.4.1" }, "author": { "name": "juniorCitizen", "email": "chiayu.tsai.personal@gmail.com" }, "license": "MIT", "bugs": { "url": "https://github.com/chiayutsaipersonal/storyblok-ts-client/issues" }, "homepage": "https://github.com/chiayutsaipersonal/storyblok-ts-client#readme", "dependencies": { "axios": "^0.18.0", "form-data": "^2.3.3", "p-throttle": "^2.0.0", "qs": "^6.6.0", "sharp": "^0.21.0" }, "devDependencies": { "@babel/cli": "^7.1.5", "@babel/core": "^7.1.6", "@babel/plugin-proposal-class-properties": "^7.1.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", "@babel/preset-env": "^7.1.6", "@babel/preset-typescript": "^7.1.0", "@types/dotenv-safe": "^5.0.2", "@types/form-data": "^2.2.1", "@types/jest": "^23.3.9", "@types/node": "^10.12.10", "@types/p-throttle": "^1.1.0", "@types/qs": "^6.5.1", "@types/sharp": "^0.21.0", "dotenv-safe": "^6.1.0", "jest": "^23.6.0", "jsdoc-babel": "^0.5.0", "jsdoc-to-markdown": "^4.0.1", "prettier": "^1.15.2", "ts-jest": "^23.10.5", "tslint": "^5.11.0", "tslint-config-prettier": "^1.17.0", "tslint-plugin-prettier": "^2.0.1", "typescript": "^3.1.6" }, "scripts": { "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "prelint": "npm run format", "lint": "tslint -p tsconfig.json --fix", "pretest": "npm run lint", "test": "jest --bail", "prebuild": "npm test", "build": "tsc", "build:doc": "jsdoc2md --no-cache --template README.hbs --files \"src/**/*.ts\" --configure jsdoc2md.json > README.md", "postbuild": "npm run build:doc", "coverage": "jest --coverage", "dev:test": "jest --watch", "dev": "tsc -w", "prestart": "tsc", "start": "node dist/index.js" } }