autocolor.js
Version:
Automatically colors your output!
74 lines (73 loc) • 2.53 kB
JSON
{
"name": "autocolor.js",
"version": "0.0.20",
"description": "Automatically colors your output!",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"scripts": {
"prepublish": "run-s fix build test",
"describe": "npm-scripts-info",
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"test": "run-s test:*",
"test:jest": "jest",
"watch": "jest --watch",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"reset": "git clean -dfx && git reset --hard && npm i",
"clean": "trash build",
"prepare-release": "run-s build test doc:html doc:publish"
},
"scripts-info": {
"describe": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"fix": "Try to automatically fix any linting problems",
"test": "Lint and test the project",
"watch": "Start the tests on filechange",
"doc": "Generate HTML API documentation and open it in a browser",
"doc:json": "Generate API documentation in typedoc JSON format",
"reset": "Delete all untracked files and reset the repo to the last commit",
"prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/USER/PROJECT.git"
},
"keywords": [
"autocolor",
"automate",
"color",
"cli"
],
"author": "USER",
"license": "MIT",
"bugs": {
"url": "https://github.com/AutoColor/autocolor.js/issues"
},
"homepage": "https://github.com/AutoColor/autocolor.js#readme",
"devDependencies": {
"@bitjson/npm-scripts-info": "^1.0.0",
"@bitjson/typedoc": "^0.15.0-0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"gh-pages": "^2.2.0",
"jest": "^25.1.0",
"npm-run-all": "^4.1.5",
"open-cli": "^5.0.0",
"prettier": "^1.19.1",
"trash-cli": "^3.0.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^3.0.0",
"ip-regex": "^4.1.0"
}
}