bmstu-mt-wp/package.json

47 lines
1.3 KiB
JSON
Raw Normal View History

2013-12-01 10:05:34 +04:00
{
2020-04-17 14:00:49 +03:00
"name": "@shower/shower",
2013-12-01 10:05:34 +04:00
"description": "Shower HTML presentation engine",
2020-04-17 19:51:07 +03:00
"version": "3.0.0",
"author": {
"name": "Vadim Makeev",
2018-04-06 18:27:16 +03:00
"url": "https://pepelsbey.net/"
},
2014-05-12 20:40:09 +04:00
"homepage": "https://github.com/shower/shower",
"repository": {
"type": "git",
"url": "git://github.com/shower/shower.git"
},
"bugs": {
2018-12-21 04:40:38 +03:00
"url": "https://github.com/shower/shower/issues"
},
2015-12-06 21:35:44 +03:00
"license": "MIT",
"keywords": [
"shower",
"presentation",
"template"
],
2016-03-23 23:59:05 +03:00
"files": [
"pictures/**",
"index.html",
"LICENSE.md",
"README.md"
],
"dependencies": {
2020-04-17 14:00:34 +03:00
"@shower/core": "^3.0.0",
"@shower/material": "^2.3.0",
"@shower/ribbon": "^3.3.0"
2014-03-21 12:40:34 +04:00
},
"devDependencies": {
2020-04-17 19:49:51 +03:00
"@shower/cli": "^0.3.0",
2020-04-17 14:00:34 +03:00
"path-exists-cli": "^1.0.0"
2016-03-23 23:58:47 +03:00
},
"scripts": {
2018-08-24 01:03:08 +03:00
"pdf": "shower pdf",
2018-08-30 17:18:57 +03:00
"start": "shower serve",
"prepare": "shower prepare --files '**' --files '!{docs,node_modules,prepared}{,/**}' --files '!*.{md,toml,json}'",
"archive": "shower archive --files '**' --files '!{docs,node_modules,prepared}{,/**}' --files '!*.{md,toml,json}'",
"publish": "shower publish --files '**' --files '!{docs,node_modules,prepared}{,/**}' --files '!*.{md,toml,json}'",
2020-04-17 19:49:51 +03:00
"test": "npm run prepare && ls prepared && npm run archive && path-exists presentation.zip"
2013-12-01 10:05:34 +04:00
}
}