Ned Zimmerman
7 years ago
5 changed files with 66 additions and 70 deletions
@ -1,6 +1,6 @@
|
||||
{ |
||||
"/scripts/aldine.js": "/scripts/aldine.js?id=1f58027f7de9942caf57", |
||||
"/styles/aldine.css": "/styles/aldine.css?id=fa7bbb302e39b92990db", |
||||
"/styles/aldine.css": "/styles/aldine.css?id=23585277fc9935ca45bb", |
||||
"/styles/editor.css": "/styles/editor.css?id=d96762ab5918cde0c2e1", |
||||
"/scripts/customizer.js": "/scripts/customizer.js?id=1b0d3cfc1d85f460af53", |
||||
"/scripts/catalog-admin.js": "/scripts/catalog-admin.js?id=d25f1240496bd3607338" |
||||
|
File diff suppressed because one or more lines are too long
@ -1,66 +1,62 @@
|
||||
{ |
||||
"name": "@pressbooks/pressbooks-aldine", |
||||
"version": "1.0.0-beta.1", |
||||
"author": "Pressbooks (Book Oven Inc.) <code@pressbooks.com>", |
||||
"homepage": "https://github.com/pressbooks/pressbooks-aldine/", |
||||
"description": "Aldine is the root theme for Pressbooks.", |
||||
"keywords": [ |
||||
"publishing", |
||||
"catalog", |
||||
"pressbooks", |
||||
"default-theme" |
||||
], |
||||
"private": true, |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git://github.com/pressbooks/pressbooks-aldine.git" |
||||
}, |
||||
"bugs": { |
||||
"url": "https://github.com/pressbooks/pressbooks-aldine/issues" |
||||
}, |
||||
"licenses": [ |
||||
{ |
||||
"type": "GPL-3.0", |
||||
"url": "https://opensource.org/licenses/GPL-3.0" |
||||
} |
||||
], |
||||
"browserslist": [ |
||||
"last 2 versions", |
||||
"android 4", |
||||
"opera 12" |
||||
], |
||||
"eslintConfig": { |
||||
"extends": "./node_modules/pressbooks-build-tools/config/eslint.js", |
||||
"globals": { |
||||
"$": true, |
||||
"PB_A11y": true |
||||
} |
||||
}, |
||||
"stylelint": { |
||||
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js" |
||||
}, |
||||
"scripts": { |
||||
"build": "cross-env NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
||||
"build:production": "cross-env NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
||||
"build:profile": "cross-env NODE_ENV=production webpack --progress --profile --json --config=node_modules/laravel-mix/setup/webpack.config.js", |
||||
"start": "cross-env NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
||||
"rmdist": "rimraf dist", |
||||
"lint": "npm run -s lint:scripts && npm run -s lint:styles", |
||||
"lint:scripts": "node_modules/eslint/bin/eslint.js \"assets/scripts/*.js\"", |
||||
"lint:styles": "node_modules/stylelint/bin/stylelint.js \"assets/styles/**/*.scss\" --syntax scss", |
||||
"test": "npm run -s lint" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 6.9.4" |
||||
}, |
||||
"devDependencies": { |
||||
"pressbooks-build-tools": "^0.10.0" |
||||
}, |
||||
"dependencies": { |
||||
"aetna": "^1.0.0-alpha.1", |
||||
"isotope-layout": "^3.0.5", |
||||
"jquery-bridget": "^2.0.1", |
||||
"js-cookie": "^2.2.0", |
||||
"wpapi": "^1.1.2" |
||||
} |
||||
"name": "@pressbooks/pressbooks-aldine", |
||||
"version": "1.0.0-beta.1", |
||||
"author": "Pressbooks (Book Oven Inc.) <code@pressbooks.com>", |
||||
"homepage": "https://github.com/pressbooks/pressbooks-aldine/", |
||||
"description": "Aldine is the root theme for Pressbooks.", |
||||
"keywords": ["publishing", "catalog", "pressbooks", "default-theme"], |
||||
"private": true, |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git://github.com/pressbooks/pressbooks-aldine.git" |
||||
}, |
||||
"bugs": { |
||||
"url": "https://github.com/pressbooks/pressbooks-aldine/issues" |
||||
}, |
||||
"licenses": [ |
||||
{ |
||||
"type": "GPL-3.0", |
||||
"url": "https://opensource.org/licenses/GPL-3.0" |
||||
} |
||||
], |
||||
"browserslist": ["last 2 versions", "android 4", "opera 12"], |
||||
"eslintConfig": { |
||||
"extends": "./node_modules/pressbooks-build-tools/config/eslint.js", |
||||
"globals": { |
||||
"$": true, |
||||
"PB_A11y": true |
||||
} |
||||
}, |
||||
"stylelint": { |
||||
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js" |
||||
}, |
||||
"scripts": { |
||||
"build": |
||||
"cross-env NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
||||
"build:production": |
||||
"cross-env NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
||||
"build:profile": |
||||
"cross-env NODE_ENV=production webpack --progress --profile --json --config=node_modules/laravel-mix/setup/webpack.config.js", |
||||
"start": |
||||
"cross-env NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
||||
"rmdist": "rimraf dist", |
||||
"lint": "npm run -s lint:scripts && npm run -s lint:styles", |
||||
"lint:scripts": "node_modules/eslint/bin/eslint.js \"assets/scripts/*.js\"", |
||||
"lint:styles": |
||||
"node_modules/stylelint/bin/stylelint.js \"assets/styles/**/*.scss\" --syntax scss", |
||||
"test": "npm run -s lint" |
||||
}, |
||||
"engines": { |
||||
"node": ">= 6.9.4" |
||||
}, |
||||
"devDependencies": { |
||||
"pressbooks-build-tools": "^0.10.0" |
||||
}, |
||||
"dependencies": { |
||||
"aetna": "^1.0.0-alpha.3", |
||||
"isotope-layout": "^3.0.5", |
||||
"jquery-bridget": "^2.0.1", |
||||
"js-cookie": "^2.2.0", |
||||
"wpapi": "^1.1.2" |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue