UNPKG

ness

Version:

✪ No-effort static sites deployed to your AWS account.

178 lines (177 loc) 4.82 kB
{ "name": "ness", "description": "✪ No-effort static sites deployed to your AWS account.", "main": "lib/index.js", "repository": { "type": "git", "url": "https://github.com/nessjs/ness.git" }, "author": { "name": "Adam Elmore", "email": "elmore.adam@gmail.com", "organization": false }, "keywords": [ "ness", "cli", "web sites", "static sites", "aws" ], "engines": { "node": ">= 12.0.0" }, "license": "MIT", "version": "1.8.1", "bin": { "ness": "bin/ness" }, "scripts": { "no-changes": "(git log --oneline -1 | grep -q \"chore(release):\") && echo \"No changes to release.\"", "bump": "yarn --silent no-changes || semantic-release --no-ci", "format": "prettier --write '**/*.*' && eslint . --ext .ts --fix", "package": "rm -fr dist && mkdir -p dist/js && yarn pack && mv *.tgz dist/js/", "compile": "tsc", "watch": "tsc -w", "build": "yarn test && yarn compile && yarn run package", "release": "yarn build && yarn --silent no-changes || (yarn bump && git push --follow-tags origin main)", "test": "rm -fr lib/ && jest --passWithNoTests --updateSnapshot && yarn eslint", "test:watch": "jest --watch", "test:update": "jest --updateSnapshot", "eslint": "eslint . --ext .ts" }, "release": { "branches": [ "main" ], "plugins": [ [ "@semantic-release/commit-analyzer", { "releaseRules": [ { "breaking": true, "release": "major" }, { "revert": true, "release": "patch" }, { "type": "feat", "release": "minor" }, { "type": "fix", "release": "patch" }, { "type": "perf", "release": "patch" }, { "type": "deps", "release": "patch" }, { "type": "docs", "release": "patch" } ] } ], "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/git", "@semantic-release/github" ] }, "devDependencies": { "@semantic-release/changelog": "6.0.1", "@semantic-release/git": "10.0.1", "@types/archiver": "5.3.1", "@types/css": "0.0.33", "@types/fs-extra": "9.0.13", "@types/git-branch": "2.0.2", "@types/ink": "2.0.3", "@types/ink-spinner": "3.0.1", "@types/ink-text-input": "2.0.2", "@types/jest": "27.4.0", "@types/mime": "2.0.3", "@types/node": "17.0.8", "@types/react": "17.0.38", "@types/update-notifier": "5.1.0", "@types/uuid": "8.3.4", "@typescript-eslint/eslint-plugin": "5.9.1", "@typescript-eslint/parser": "5.9.1", "eslint": "8.6.0", "eslint-config-prettier": "8.3.0", "eslint-import-resolver-node": "0.3.6", "eslint-import-resolver-typescript": "2.5.0", "eslint-plugin-import": "2.25.4", "eslint-plugin-prettier": "4.0.0", "eslint-plugin-react": "7.28.0", "eslint-plugin-react-hooks": "4.3.0", "jest": "27.4.7", "json-schema": "0.4.0", "prettier": "2.5.1", "semantic-release": "18.0.1", "ts-jest": "27.1.2", "typescript": "4.5.4" }, "peerDependencies": {}, "dependencies": { "@aws-sdk/client-acm": "3.46.0", "@aws-sdk/client-cloudformation": "3.46.0", "@aws-sdk/client-cloudfront": "3.46.0", "@aws-sdk/client-route-53": "3.46.0", "@aws-sdk/client-s3": "3.46.0", "@aws-sdk/client-sts": "3.46.0", "@aws-sdk/credential-provider-node": "3.46.0", "@sls-next/core": "^3.7.0-alpha.0", "@sls-next/lambda-at-edge": "3.6.0", "archiver": "5.3.0", "chalk": "4.1.0", "cheerio": "1.0.0-rc.5", "commander": "8.3.0", "css": "3.0.0", "final-form": "4.20.6", "fs-extra": "10.0.0", "git-branch": "2.0.1", "glob": "7.2.0", "got": "11.8.2", "ink": "3.2.0", "ink-link": "2.0.0", "ink-spinner": "4.0.3", "ink-text-input": "4.0.2", "mime": "3.0.0", "react": "17.0.2", "react-final-form": "6.5.7", "update-notifier": "5.1.0", "uuid": "8.3.2", "yaml": "1.10.2" }, "bundledDependencies": [], "types": "lib/index.d.ts", "jest": { "clearMocks": true, "collectCoverage": true, "coveragePathIgnorePatterns": [ "/node_modules/" ], "testPathIgnorePatterns": [ "/node_modules/" ], "preset": "ts-jest", "testMatch": [ "**/__tests__/**/*.ts?(x)", "**/?(*.)+(spec|test).ts?(x)" ], "globals": { "ts-jest": { "tsconfig": "tsconfig.jest.json" } } } }