|
1 | 1 | {
|
2 |
| - "name": "@pressbooks/pressbooks-aldine", |
3 |
| - "version": "1.0.0-beta.1", |
4 |
| - "author": "Pressbooks (Book Oven Inc.) <[email protected]>", |
5 |
| - "homepage": "https://github.com/pressbooks/pressbooks-aldine/", |
6 |
| - "description": "Aldine is the root theme for Pressbooks.", |
7 |
| - "keywords": ["publishing", "catalog", "pressbooks", "default-theme"], |
8 |
| - "private": true, |
9 |
| - "repository": { |
10 |
| - "type": "git", |
11 |
| - "url": "git://github.com/pressbooks/pressbooks-aldine.git" |
12 |
| - }, |
13 |
| - "bugs": { |
14 |
| - "url": "https://github.com/pressbooks/pressbooks-aldine/issues" |
15 |
| - }, |
16 |
| - "licenses": [ |
17 |
| - { |
18 |
| - "type": "GPL-3.0", |
19 |
| - "url": "https://opensource.org/licenses/GPL-3.0" |
20 |
| - } |
21 |
| - ], |
22 |
| - "browserslist": ["last 2 versions", "android 4", "opera 12"], |
23 |
| - "eslintConfig": { |
24 |
| - "extends": "./node_modules/pressbooks-build-tools/config/eslint.js", |
25 |
| - "globals": { |
26 |
| - "$": true, |
27 |
| - "PB_A11y": true |
28 |
| - } |
29 |
| - }, |
30 |
| - "stylelint": { |
31 |
| - "extends": "./node_modules/pressbooks-build-tools/config/stylelint.js" |
32 |
| - }, |
33 |
| - "scripts": { |
34 |
| - "build": |
35 |
| - "cross-env NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
36 |
| - "build:production": |
37 |
| - "cross-env NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
38 |
| - "build:profile": |
39 |
| - "cross-env NODE_ENV=production webpack --progress --profile --json --config=node_modules/laravel-mix/setup/webpack.config.js", |
40 |
| - "start": |
41 |
| - "cross-env NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
42 |
| - "rmdist": "rimraf dist", |
43 |
| - "lint": "npm run -s lint:scripts && npm run -s lint:styles", |
44 |
| - "lint:scripts": "node_modules/eslint/bin/eslint.js \"assets/scripts/*.js\"", |
45 |
| - "lint:styles": |
46 |
| - "node_modules/stylelint/bin/stylelint.js \"assets/styles/**/*.scss\" --syntax scss", |
47 |
| - "test": "npm run -s lint" |
48 |
| - }, |
49 |
| - "engines": { |
50 |
| - "node": ">= 6.9.4" |
51 |
| - }, |
52 |
| - "devDependencies": { |
53 |
| - "pressbooks-build-tools": "^0.10.0" |
54 |
| - }, |
55 |
| - "dependencies": { |
56 |
| - "aetna": "^1.0.0-alpha.3", |
57 |
| - "isotope-layout": "^3.0.5", |
58 |
| - "jquery-bridget": "^2.0.1", |
59 |
| - "js-cookie": "^2.2.0", |
60 |
| - "wpapi": "^1.1.2" |
61 |
| - } |
| 2 | + "name": "@pressbooks/pressbooks-aldine", |
| 3 | + "version": "1.0.0-beta.2", |
| 4 | + "author": "Pressbooks (Book Oven Inc.) <[email protected]>", |
| 5 | + "homepage": "https://github.com/pressbooks/pressbooks-aldine/", |
| 6 | + "description": "Aldine is the root theme for Pressbooks.", |
| 7 | + "keywords": [ |
| 8 | + "publishing", |
| 9 | + "catalog", |
| 10 | + "pressbooks", |
| 11 | + "default-theme" |
| 12 | + ], |
| 13 | + "private": true, |
| 14 | + "repository": { |
| 15 | + "type": "git", |
| 16 | + "url": "git://github.com/pressbooks/pressbooks-aldine.git" |
| 17 | + }, |
| 18 | + "bugs": { |
| 19 | + "url": "https://github.com/pressbooks/pressbooks-aldine/issues" |
| 20 | + }, |
| 21 | + "licenses": [ |
| 22 | + { |
| 23 | + "type": "GPL-3.0", |
| 24 | + "url": "https://opensource.org/licenses/GPL-3.0" |
| 25 | + } |
| 26 | + ], |
| 27 | + "browserslist": [ |
| 28 | + "last 2 versions", |
| 29 | + "android 4", |
| 30 | + "opera 12" |
| 31 | + ], |
| 32 | + "eslintConfig": { |
| 33 | + "extends": "./node_modules/pressbooks-build-tools/config/eslint.js", |
| 34 | + "globals": { |
| 35 | + "$": true, |
| 36 | + "PB_A11y": true |
| 37 | + } |
| 38 | + }, |
| 39 | + "stylelint": { |
| 40 | + "extends": "./node_modules/pressbooks-build-tools/config/stylelint.js" |
| 41 | + }, |
| 42 | + "scripts": { |
| 43 | + "build": "cross-env NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
| 44 | + "build:production": "cross-env NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
| 45 | + "build:profile": "cross-env NODE_ENV=production webpack --progress --profile --json --config=node_modules/laravel-mix/setup/webpack.config.js", |
| 46 | + "start": "cross-env NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
| 47 | + "rmdist": "rimraf dist", |
| 48 | + "lint": "npm run -s lint:scripts && npm run -s lint:styles", |
| 49 | + "lint:scripts": "node_modules/eslint/bin/eslint.js \"assets/scripts/*.js\"", |
| 50 | + "lint:styles": "node_modules/stylelint/bin/stylelint.js \"assets/styles/**/*.scss\" --syntax scss", |
| 51 | + "test": "npm run -s lint" |
| 52 | + }, |
| 53 | + "engines": { |
| 54 | + "node": ">= 6.9.4" |
| 55 | + }, |
| 56 | + "devDependencies": { |
| 57 | + "pressbooks-build-tools": "^0.10.0" |
| 58 | + }, |
| 59 | + "dependencies": { |
| 60 | + "aetna": "^1.0.0-alpha.3", |
| 61 | + "isotope-layout": "^3.0.5", |
| 62 | + "jquery-bridget": "^2.0.1", |
| 63 | + "js-cookie": "^2.2.0", |
| 64 | + "wpapi": "^1.1.2" |
| 65 | + } |
62 | 66 | }
|
0 commit comments