generator-cap
Version:
CAP (Connected Apps Platform) is an open-source suite of technologies for rapidly creating web and mobile applications that synchronize data with Salesforce and other systems.
104 lines (103 loc) • 2.28 kB
JSON
{
"name": "generator-cap",
"version": "1.0.9",
"description": "CAP (Connected Apps Platform) is an open-source suite of technologies for rapidly creating web and mobile applications that synchronize data with Salesforce and other systems.",
"homepage": "https://www.npmjs.com/package/generator-cap",
"author": {
"name": "Lenin Emmanuel Espinoza",
"email": "lenin_emmanuelt@softwareallies.com"
},
"repository": {
"type": "git",
"url": "https://github.com/software-allies/cap-generator/"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"cap",
"angular",
"looback",
"Salesforce",
"SFDC",
"External App",
"Integration",
"Heroku",
"Heroku Connect"
],
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.20.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^26.0.1",
"lint-staged": "^6.1.1",
"nsp": "^2.8.0",
"prettier": "^1.11.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.6.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"child-process-promise": "^2.2.1",
"child_process": "^1.0.2",
"loading-cli": "^1.1.0",
"promisify-child-process": "^3.1.3",
"request": "^2.88.0",
"ts-simple-ast": "^13.0.0",
"underscore.string": "^3.3.5",
"uuid": "^8.3.0",
"yeoman-generator": "^4.0.0",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/generators/app/templates/client/package.json"
]
},
"scripts": {
"lint": "eslint .",
"lint.fix": "eslint . --fix",
"test": "jest"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"license": "MIT"
}