UNPKG

@ngageoint/color-js

Version:
70 lines (69 loc) 1.82 kB
{ "name": "@ngageoint/color-js", "version": "2.1.0", "displayName": "Color Javascript", "description": "Color Javascript", "keywords": [ "NGA", "Color" ], "repository": { "type": "git", "url": "git+https://github.com/ngageoint/color-js.git" }, "author": { "name": "NGA" }, "contributors": [ { "name": "Kevin Gilland", "email": "kgilland@caci.com" } ], "homepage": "https://www.nga.mil", "engines": { "npm": ">= 8.x" }, "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", "devDependencies": { "@tsconfig/recommended": "^1.0.1", "@types/chai": "^4.3.3", "@types/mocha": "9.1.1", "chai": "4.3.6", "coveralls": "3.1.1", "mocha": "^10.0.0", "nyc": "^15.1.0", "prettier": "^2.7.1", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "ts-node": "^10.9.1", "typescript": "^4.8.3" }, "dependencies": {}, "scripts": { "clean": "rm -rf dist; rm -rf .test_run", "test:run": "mocha --config .mocharc.js", "test": "npm run test:run", "compile": "tsc", "build": "npm run compile", "report": "nyc report", "coverage": "nyc npm run test:run", "format": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"", "lint": "tslint -p tsconfig.json", "prebuild": "npm run clean", "pretest": "npm run build", "prepublishOnly": "npm run build && npm run lint" }, "files": [ "dist" ], "nyc": { "temp-dir": "./.test_run", "report-dir": "./docs/coverage", "reporter": [ "lcov" ] } }