This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
forked from etn-ccis/blui-angular-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.4 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@brightlayer-ui/angular-themes",
"author": "Brightlayer UI <brightlayer-ui@eaton.com>",
"license": "BSD-3-Clause",
"version": "8.0.0",
"description": "Angular themes for Brightlayer UI applications",
"scripts": {
"initialize": "bash scripts/initializeSubmodule.sh",
"install:dependencies": "cd demos/showcase && yarn && cd ../..",
"start": "yarn initialize && yarn install:dependencies && yarn link:themes && cd demos/showcase && yarn start",
"link:themes": "bash ./scripts/linkThemes.sh",
"test": "bash ./scripts/buildTest.sh",
"prettier": "prettier \"**/**.{css,scss,html,md}\" --write",
"publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish",
"tag:package": "npx -p @brightlayer-ui/tag blui-tag -s -blui-angular-themes",
"precommit": "yarn initialize && yarn install:dependencies && yarn prettier && yarn generate:licenses && yarn test",
"update:submodule": "git submodule update --remote",
"copy-to-showcase": "yarn link:themes && cp refresh.scss demos/showcase/src",
"watch": "npm-watch",
"generate:licenses": "npm-license-crawler -onlyDirectDependencies -json LICENSES.json"
},
"watch": {
"copy-to-showcase": {
"patterns": ["**"],
"extensions": "scss",
"ignore": "demos"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/brightlayer-ui/angular-themes.git"
},
"bugs": {
"url": "https://github.com/brightlayer-ui/angular-themes/issues"
},
"homepage": "https://github.com/brightlayer-ui/angular-themes/tree/master",
"keywords": [
"Brightlayer UI",
"themes",
"Eaton",
"Angular"
],
"prettier": "@brightlayer-ui/prettier-config",
"files": [
"mixins",
"package.json",
"README.md",
"LICENSE",
"LICENSES.json",
"CHANGELOG.md",
"*.scss"
],
"dependencies": {
"@brightlayer-ui/colors": "^3.0.0",
"@fontsource/open-sans": "^4.1.0"
},
"devDependencies": {
"@angular/material": "^14.2.7",
"@brightlayer-ui/prettier-config": "^1.0.3",
"npm-license-crawler": "^0.2.1",
"npm-watch": "^0.11.0",
"prettier": "^2.7.1"
},
"peerDependencies": {
"@angular/material": "^14.0.0"
}
}