pigmentjs
Version:
A zero-dependency colour organisation, creation and manipulation library built for web developers.
66 lines (65 loc) • 1.64 kB
JSON
{
"name": "pigmentjs",
"version": "1.1.0",
"description": "A zero-dependency colour organisation, creation and manipulation library built for web developers.",
"keywords": [
"color",
"colour",
"palette",
"complementary",
"monochrome"
],
"author": "James Toohey",
"license": "MIT",
"maintainers": [
{
"name": "James Toohey",
"email": "hello@toohey.io",
"web": "https://toohey.io"
}
],
"homepage": "https://github.com/jamestoohey/pigmentjs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jamestoohey/pigmentjs.git"
},
"bugs": {
"url": "https://github.com/jamestoohey/pigmentjs/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.ts",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"build-watch": "tsc --watch",
"prepack": "npm run typecheck && npm test && npm run build",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended"
]
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"jest-extended": "^4.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}