color-interfaces
Advanced tools
Comparing version 0.0.22 to 0.1.0
@@ -1,2 +0,2 @@ | ||
import { Color } from "./ColorInterface"; | ||
import { Color } from './ColorInterface'; | ||
declare class BaseRGBInterface { | ||
@@ -3,0 +3,0 @@ protected color: Color; |
{ | ||
"name": "color-interfaces", | ||
"version": "0.0.22", | ||
"version": "0.1.0", | ||
"description": "interfaces for color spaces", | ||
@@ -30,3 +30,9 @@ "repository": "https://github.com/chriskr/color-interfaces", | ||
"build": "cross-env NODE_ENV=production webpack --mode production", | ||
"test": "jest --config jest.config.js && coveralls < coverage/lcov.info" | ||
"test": "jest --config jest.config.js && coveralls < coverage/lcov.info", | ||
"format": "prettier --write \"src/**/*.ts\" ", | ||
"lint": "tslint -p tsconfig.json", | ||
"prepare": "npm run build", | ||
"prepublishOnly": "npm test && npm run lint", | ||
"version": "npm run format && git add -A src", | ||
"postversion": "git push && git push --tags" | ||
}, | ||
@@ -44,3 +50,6 @@ "devDependencies": { | ||
"jest": "^26.0.1", | ||
"prettier": "^2.0.5", | ||
"ts-loader": "^7.0.4", | ||
"tslint": "^6.1.2", | ||
"tslint-config-prettier": "^1.18.0", | ||
"typescript": "^3.9.2", | ||
@@ -47,0 +56,0 @@ "webpack": "^4.43.0", |
48153
85
17