forked from visual-framework/vf-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 2.02 KB
/
package.json
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
47
48
49
50
{
"name": "@visual-framework/vf-core-repo",
"version": "2.2.0-alpha.0",
"description": "Visual Framework",
"main": "index.js",
"dependencies": {
"gulp": "4.0.2"
},
"vfConfig": {
"vfNamespace": "vf-",
"vfComponentPath": "components"
},
"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{{ releaseLinks.notes(\"COMPONENTNAME\", \"VERSIONHERE\", \"%H\") }} %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 <[email protected]> (http://www.alwaystwisted.com/)",
"license": "Apache-2.0",
"devDependencies": {
"@visual-framework/vf-component-generator": "^1.1.5",
"husky": "7.0.4",
"prettier-stylelint": "0.4.2",
"stylelint-order": "5.0.0",
"stylelint-scss": "4.0.0"
}
}