UNPKG

@coat/cli

Version:

TODO: See #3

111 lines (110 loc) 3.39 kB
{ "name": "@coat/cli", "version": "0.0.28", "author": "Peter Juras <me@peterjuras.com>", "bin": { "coat": "bin/coat.js" }, "dependencies": { "@babel/code-frame": "7.18.6", "@babel/parser": "7.21.2", "@babel/types": "7.21.2", "ajv": "8.12.0", "boxen": "5.1.2", "chalk": "4.1.2", "commander": "10.0.0", "execa": "5.1.1", "fs-extra": "11.1.0", "immer": "9.0.19", "import-from": "4.0.0", "import-local": "3.1.0", "inquirer": "8.2.5", "js-yaml": "4.1.0", "json-colorizer": "2.2.2", "json-stable-stringify": "1.0.2", "json5": "2.2.3", "leven": "3.1.0", "lodash": "4.17.21", "ora": "5.4.1", "prettier": "2.8.4", "resolve-from": "5.0.0", "semver": "7.3.8", "sha3": "2.1.4", "single-trailing-newline": "1.0.0", "tmp": "0.2.1", "type-fest": "2.19.0", "unquoted-property-validator": "1.1.0", "wrap-ansi": "7.0.0" }, "devDependencies": { "@babel/cli": "7.21.0", "@babel/core": "7.21.0", "@babel/preset-env": "7.20.2", "@babel/preset-typescript": "7.21.0", "@types/babel__code-frame": "7.0.3", "@types/fs-extra": "11.0.1", "@types/inquirer": "8.2.6", "@types/jest": "29.4.0", "@types/js-yaml": "4.0.5", "@types/json-stable-stringify": "1.0.34", "@types/lodash": "4.14.191", "@types/semver": "7.3.13", "@types/single-trailing-newline": "1.0.0", "@types/tmp": "0.2.3", "@types/which": "2.0.2", "@types/wrap-ansi": "3.0.0", "@typescript-eslint/eslint-plugin": "5.54.1", "@typescript-eslint/parser": "5.54.1", "concurrently": "7.6.0", "cross-env": "7.0.3", "eslint": "8.35.0", "eslint-config-prettier": "8.7.0", "jest": "29.5.0", "lint-staged": "13.2.0", "memfs": "3.4.13", "memory-streams": "0.1.3", "prettier": "2.8.4", "rimraf": "4.4.0", "strip-ansi": "6.0.1", "ts-json-schema-generator": "1.2.0", "ts-node": "10.9.1", "typescript": "4.9.5", "which": "3.0.0" }, "engines": { "node": ">=14" }, "keywords": [ "coat" ], "license": "MIT", "main": "build/index.js", "lint-staged": { "*.{ts,js}": [ "eslint --fix --max-warnings=0", "prettier --write" ] }, "scripts": { "build": "concurrently npm:build:*", "build:babel": "babel src -d build --extensions \".ts\" --ignore \"**/*.d.ts,**/*.test.ts\"", "build:typedefs": "tsc -p tsconfig.build.json", "build:generate": "ts-node scripts/create-schemas.ts", "lint": "concurrently npm:lint:*", "lint:eslint": "eslint \"{src,test}/**/*{.ts,.js}\" --max-warnings 0", "lint:prettier": "prettier --check src test", "lint:tsc": "tsc", "lint-staged": "lint-staged", "prebuild": "rimraf build", "prepack": "cross-env BABEL_ENV=production npm run build", "test": "cross-env JEST_PROJECT=\"Unit tests\" jest", "test:e2e": "cross-env JEST_PROJECT=\"E2E tests\" jest --coverage=false", "test:e2e-test-session-create": "ts-node scripts/e2e-test-session-create", "test:e2e-test-session-destroy": "ts-node scripts/e2e-test-session-destroy", "test:all": "jest", "watch-build": "concurrently npm:watch-build:*", "watch-build:babel": "npm run build:babel -- --watch", "watch-build:typedefs": "npm run build:typedefs -- --watch", "watch-lint:tsc": "npm run lint:tsc -- --watch" } }