contentful-image
Version:
A TypeScript implementation of the Contentful images API
37 lines (36 loc) • 911 B
JSON
{
"name": "contentful-image",
"version": "1.0.1",
"description": "A TypeScript implementation of the Contentful images API",
"main": "index.js",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"TypeScript",
"Contentful",
"Image",
"Images",
"Optimization",
"Optimisation",
"API"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}
}