hubl/package.json

62 lines
1.4 KiB
JSON
Raw Normal View History

2018-09-28 19:20:15 +00:00
{
2020-05-08 13:27:44 +00:00
"name": "hubl",
2018-09-28 19:20:15 +00:00
"version": "1.0.0",
2019-05-14 12:03:11 +00:00
"license": "MIT",
2020-04-03 18:02:49 +00:00
"repository": {
"type": "git",
2020-05-08 16:42:01 +00:00
"url": "https://git.startinblox.com/applications/hubl.git"
2020-04-03 18:02:49 +00:00
},
2019-05-14 12:03:11 +00:00
"scripts": {
2020-11-26 22:21:55 +00:00
"prebuild": "rimraf build",
"build": "cross-env NODE_ENV='production' node internal/parcel.js",
"watch": "rimraf build .cache && node internal/parcel.js",
2020-05-19 13:13:30 +00:00
"cypress:open": "cypress open",
"cypress:verify": "cypress verify",
"cypress:info": "cypress info",
"test": "cypress run"
2018-09-28 19:20:15 +00:00
},
2020-04-03 18:02:49 +00:00
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "major",
"release": "major"
},
{
"type": "minor",
"release": "minor"
},
{
"type": "*",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/gitlab"
]
},
2018-09-28 19:20:15 +00:00
"dependencies": {
"@startinblox/hubl-styling-framework": "^1.8.15",
"cross-env": "^7.0.3",
2020-11-26 22:21:55 +00:00
"fs-extra": "^9.0.1",
2019-11-14 16:34:37 +00:00
"normalize.css": "^8.0.1",
2020-11-26 22:21:55 +00:00
"parcel-bundler": "^1.12.4",
"pug": "^3.0.0",
"rimraf": "^2.7.1",
"sass": "^1.29.0"
2020-05-19 13:13:30 +00:00
},
"devDependencies": {
2020-11-26 22:21:55 +00:00
"cypress": "^5.6.0",
"cypress-localstorage-commands": "^1.2.4"
2018-09-28 19:20:15 +00:00
}
}