node-swatch-names
Version:
Swatch-names automatically and consistently names Photoshop swatches to be shared among frontend developers and designers. Exports colors to SASS variables and JSON for use in code.
77 lines (76 loc) • 2.16 kB
JSON
{
"name": "node-swatch-names",
"version": "1.2.9",
"description": "Swatch-names automatically and consistently names Photoshop swatches to be shared among frontend developers and designers. Exports colors to SASS variables and JSON for use in code.",
"repository": "https://github.com/czebe/node-swatch-names",
"main": "index.js",
"scripts": {
"pretest": "npm run build",
"test": "nyc mocha --require babel-register --timeout 8000 './test/**/*.spec.js'",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"develop": "npm-watch",
"build": "babel src -d dist",
"lint": "eslint src test",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"prepublish": "npm run lint && npm test && npm run build",
"postpublish": "git push origin master --tags",
"prepare": "npm run build"
},
"watch": {
"build": "src"
},
"keywords": [
"Photoshop",
"swatch",
"colors",
"color-names"
],
"bin": {
"swatch-names": "dist/cli.js"
},
"files": [
"index.js",
"dist"
],
"engines": {
"node": ">=6"
},
"author": {
"name": "Marton Czebe",
"email": "czebemarci@gmail.com"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.1.0",
"color-convert": "^1.9.0",
"color-name-list": "^3.9.0",
"color-namer": "^1.3.0",
"diacritics": "^1.3.0",
"fs-extra": "^4.0.2",
"glob": "^7.1.2",
"inquirer": "^3.3.0",
"inquirer-autocomplete-prompt": "^0.11.1",
"inquirer-path": "^1.0.0-beta5",
"lodash": "^4.17.4",
"meow": "^3.7.0",
"nearest-color": "^0.4.1",
"npm-watch": "^0.3.0",
"ora": "^1.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"eslint": "^4.10.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"suppose": "^0.6.2"
},
"readme": "README.md"
}