forked from visual-framework/vf-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@visual-framework/vf-core-repo",
"version": "2.2.0-alpha.0",
"description": "Visual Framework 2.0",
"main": "index.js",
"dependencies": {
"gulp": "^4.0.2"
},
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"note:lerna": "for guidance see PUBLISHING.md",
"lerna:test": "lerna publish --no-git-tag-version --no-push --skip-npm --canary && git reset --hard",
"note:lerna:test": "we use the `--canary` flag to simplify testing, correct versions can be selected when running `lerna:publish`",
"lerna:publish": "lerna publish --no-git-tag-version --no-push && git reset --hard && lerna publish --no-git-tag-version --no-push --skip-npm --ignore-scripts",
"note:lerna:publish": "it's a known issue that you need to supply the version twice, we're working a solution for this",
"releasenotes": "git show -U0 --raw $(git describe --abbrev=0 --tags $(git rev-list --tags --skip=0 --max-count=1))..HEAD --pretty=format:'%n {{ notes(\"COMPONENTNAME\", \"VERSIONHERE\", \"%H\") }} %n \"commit\": \"%H\",%n \"abbreviated_commit\": \"%h\",%n \"subject\": \"%s\",%n \"sanitized_subject_line\": \"%f\",%n \"author\": {%n \"name\": \"%aN\",%n \"email\": \"%aE\",%n \"date\": \"%aD\"%n },%n' --output=tools/vf-component-library/src/site/updates/$(date +%F)-component-updates.njk -- **/CHANGELOG.md",
"prepublishOnly": "cd tools/vf-core && gulp vf-core:prepare-deploy",
"prepare": "husky install",
"generate-component": "gulp --gulpfile .\\node_modules\\@visual-framework\\vf-component-generator\\gulpfile.js vf-component"
},
"repository": {
"type": "git",
"url": "https://github.com/visual-framework/vf-core.git"
},
"keywords": [
"design",
"system",
"css",
"visual",
"framework",
"VF",
"pattern",
"component",
"library"
],
"author": "Stuart Robson <stu@alwaystwisted.com> (http://www.alwaystwisted.com/)",
"license": "Apache-2.0",
"devDependencies": {
"husky": "6.0.0",
"prettier-stylelint": "0.4.2",
"stylelint-order": "4.1.0",
"stylelint-scss": "3.19.0",
"@visual-framework/vf-component-generator": "^1.1.3"
}
}