UNPKG

wcm-rest-api

Version:

A Javascript library to work with WCM REST API operations

72 lines (71 loc) 2.01 kB
{ "name": "wcm-rest-api", "version": "1.0.0", "description": "A Javascript library to work with WCM REST API operations", "module": "dist/wcm-rest-api.bundle.esm.js", "unpkg": "dist/wcm-rest-api.bundle.browser.js", "main": "dist/wcm-rest-api.bundle.umd.js", "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "prepublish": "npm run build", "prettier": "prettier \"src/**/*.+(js|json)\"", "format": "npm run prettier -- --write", "lint": "eslint src/", "test": "jest", "test:coverage": "jest --collect-coverage", "test:report": "npm run test:coverage && live-server coverage/lcov-report --entry-file=index.html", "docs:build": "jsdoc src -r -d docs", "docs": "npm run docs:build && live-server docs --entry-file=index.html" }, "files": [ "dist", "src" ], "repository": { "type": "git", "url": "git+https://github.com/ma-0104/wcm-rest-api-js.git" }, "homepage": "https://github.com/ma-0104/wcm-rest-api-js#readme", "keywords": [ "ibm-wcm", "wcm" ], "author": { "name": "Miguel Rolsales", "email": "mike_quiroga41@hotmail.com" }, "license": "UNLICENSED", "contributors": [ { "name": "Alejandro Serrano", "email": "alexserrano63@gmail.com" } ], "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.4.0", "@babel/preset-env": "^7.4.2", "@types/rfdc": "^1.1.0", "babel-jest": "^24.7.1", "eslint": "^5.16.0", "fs-extra": "^8.0.1", "glob": "^7.1.4", "jest": "^24.7.1", "jsdoc": "~3.5.5", "live-server": "^1.2.1", "prettier": "^1.16.4", "regenerator-runtime": "^0.13.5", "rollup": "^1.7.4", "rollup-plugin-babel": "^4.3.2", "rollup-plugin-buble": "^0.19.6", "rollup-plugin-commonjs": "^9.2.2", "rollup-plugin-json": "^4.0.0", "rollup-plugin-node-resolve": "^4.0.1", "rollup-plugin-terser": "^4.0.4" }, "dependencies": { "@babel/polyfill": "^7.8.7", "rfdc": "^1.1.4" } }