UNPKG

foalts2-cli

Version:

CLI tool for FoalTS

75 lines (74 loc) 2.81 kB
{ "name": "foalts2-cli", "version": "2.12.0", "description": "CLI tool for FoalTS", "main": "./lib/index.js", "types": "./lib/index.d.ts", "scripts": { "test": "npm run test:generators && npm run test:run-script && npm run test:create-secret && npm run test:rmdir && npm run test:fs", "test:fs": "mocha --file \"./src/test.ts\" --require ts-node/register \"./src/generate/file-system.spec.ts\"", "dev:test:fs": "mocha --file \"./src/test.ts\" --require ts-node/register --watch --extension ts \"./src/generate/file-system.spec.ts\"", "test:generators": "mocha --file \"./src/test.ts\" --require ts-node/register \"./src/generate/generators/**/*.spec.ts\"", "dev:test:generators": "mocha --file \"./src/test.ts\" --require ts-node/register --watch --extension ts \"./src/generate/generators/**/*.spec.ts\"", "test:rmdir": "mocha --file \"./src/test.ts\" --require ts-node/register \"./src/rmdir/**/*.spec.ts\"", "dev:test:rmdir": "mocha --file \"./src/test.ts\" --require ts-node/register --watch --extension ts \"./src/rmdir/**/*.spec.ts\"", "test:run-script": "mocha --file \"./src/test.ts\" --require ts-node/register \"./src/run-script/**/*.spec.ts\"", "dev:test:run-script": "mocha --file \"./src/test.ts\" --require ts-node/register --watch --extension ts \"./src/run-script/**/*.spec.ts\"", "test:create-secret": "mocha --file \"./src/test.ts\" --require ts-node/register \"./src/create-secret/**/*.spec.ts\"", "dev:test:create-secret": "mocha --file \"./src/test.ts\" --require ts-node/register --watch --extension ts \"./src/create-secret/**/*.spec.ts\"", "build": "rimraf lib && tsc -p tsconfig-build.json && copyfiles -a -u 3 \"src/generate/templates/**/*\" lib/generate/templates", "prepublish": "npm run build" }, "funding": { "url": "https://github.com/sponsors/LoicPoullain" }, "engines": { "node": ">=10" }, "bin": { "foal": "./lib/index.js" }, "publishConfig": { "access": "public" }, "keywords": [ "foal", "FoalTS", "FoalTS CLI", "devkit", "sdk", "FoalTS DevKit", "foalts-cli" ], "bugs": { "url": "https://github.com/FoalTS/foal/issues" }, "repository": { "type": "git", "url": "https://github.com/FoalTS/foal" }, "homepage": "https://github.com/FoalTS", "contributors": [ "Loïc Poullain <loic.poullain@centraliens.net>" ], "license": "MIT", "files": [ "lib/", "bin/" ], "dependencies": { "ajv": "~6.12.0", "cli-spinner": "~0.2.10", "colors": "1.4.0", "commander": "~7.2.0" }, "devDependencies": { "@types/mocha": "^10.0.1", "@types/node": "10.17.24", "copyfiles": "~2.4.0", "mocha": "^10.2.0", "rimraf": "^5.0.1", "ts-node": "~9.0.0", "typescript": "~4.0.2" } }