Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Stratton <matt.stratton@gmail.com>2019-11-11 19:56:42 +0300
committerGitHub <noreply@github.com>2019-11-11 19:56:42 +0300
commit7e258516c88d59ab4d1c2bc0f273783c79534df2 (patch)
tree8029bf5a770bf31572b333e1d51aa0c43d9fcdbe /package.json
parentba311bbb777d8e97e5d455678b72abcafe4976f1 (diff)
Move to gulp (#224)
* Small changes to theme config file Signed-off-by: Matt Stratton <matt.stratton@gmail.com> * Update to use gulp This will remove the need for codekit and lets `gulp dev` be the method for building stylesheets and javascript files Signed-off-by: Matt Stratton <matt.stratton@gmail.com> * Update docs for clarity on new styles Signed-off-by: Matt Stratton <matt.stratton@gmail.com>
Diffstat (limited to 'package.json')
-rw-r--r--package.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..651774b
--- /dev/null
+++ b/package.json
@@ -0,0 +1,39 @@
+{
+ "name": "castanet",
+ "version": "1.0.2",
+ "description": "A podcast-oriented theme for Hugo",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/mattstratton/castanet.git"
+ },
+ "author": "Matt Stratton",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/mattstratton/castanet/issues"
+ },
+ "homepage": "https://github.com/mattstratton/castanet#readme",
+ "devDependencies": {
+ "gulp": "~4.0.0",
+ "gulp-clean-css": "^4.2.0",
+ "gulp-concat": "^2.6.1",
+ "gulp-htmlmin": "^5.0.1",
+ "gulp-hub": "~4.2.0",
+ "gulp-rename": "^1.4.0",
+ "gulp-sass": "^4.0.2",
+ "gulp-sourcemaps": "^2.6.5",
+ "gulp-uglify": "^3.0.2",
+ "node-sass": "^4.12.0",
+ "require-dir": "~1.2.0"
+ },
+ "dependencies": {
+ "netlify-cli": "^2.15.0",
+ "bootstrap": "^4.3.1",
+ "jquery": "^3.4.1",
+ "jssocials": "^1.5.0",
+ "popper.js": "^1.15.0"
+ }
+}