From 81fa7b30fc2de0f3e4d081a1c423aa86cd40b3e6 Mon Sep 17 00:00:00 2001 From: Daniel Sitek Date: Wed, 19 Feb 2020 11:06:58 +0100 Subject: [PATCH] updated package.json --- package-lock.json | 12 ---------- package.json | 56 ++++++++++++++++++++++++++--------------------- 2 files changed, 31 insertions(+), 37 deletions(-) diff --git a/package-lock.json b/package-lock.json index b261013..543d1f4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -30,23 +30,11 @@ "regenerator-runtime": "^0.13.2" } }, - "@types/lodash": { - "version": "4.14.149", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.149.tgz", - "integrity": "sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ==", - "dev": true - }, "@types/minimist": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=" }, - "@types/node": { - "version": "13.7.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-13.7.1.tgz", - "integrity": "sha512-Zq8gcQGmn4txQEJeiXo/KiLpon8TzAl0kmKH4zdWctPj05nWwp1ClMdAVEloqrQKfaC48PNLdgN/aVaLqUrluA==", - "dev": true - }, "@types/normalize-package-data": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", diff --git a/package.json b/package.json index f0d7b2f..992bf21 100644 --- a/package.json +++ b/package.json @@ -1,41 +1,47 @@ { "name": "tateru-cli", "version": "1.0.0", - "description": "Static site builder with twig", - "bin": "./bin/tateru-cli.js", - "main": "index.js", - "dependencies": { - "html-minifier": "^4.0.0", - "lodash": "^4.17.15", - "meow": "^6.0.1", - "twig": "^1.14.0" - }, - "devDependencies": { - "@types/lodash": "^4.14.149", - "@types/node": "^13.7.1" - }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, + "description": "Simple CLI static site builder tool with Twig.", "keywords": [ - "static", - "site", - "html", + "cli", "generator", - "twig" + "html", + "javascript", + "npm", + "site", + "static", + "static-site-generation", + "static-site-generator", + "twig", + "twigjs" ], + "homepage": "https://github.com/danielsitek/tateru-cli#readme", + "repository": "github:danielsitek/tateru-cli", + "license": "MIT", "author": { "name": "Daniel Sitek", "email": "dan.sitek@gmail.com", "url": "https://danielsitek.cz" }, - "license": "MIT", - "engines": { - "node": ">= 0.10" - }, "files": [ "index.js", "src", "bin" - ] + ], + "main": "index.js", + "bin": "./bin/tateru-cli.js", + "scripts": { + "example": "cd ./test && node ../bin/tateru-cli.js config.json", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "dependencies": { + "html-minifier": "^4.0.0", + "lodash": "^4.17.15", + "meow": "^6.0.1", + "twig": "^1.14.0" + }, + "devDependencies": {}, + "engines": { + "node": ">= 0.10" + } }