-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 2.86 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
{
"name": "react-components",
"version": "0.0.0",
"description": "React components for Brightlayer UI applications",
"scripts": {
"initialize": "bash scripts/initializeSubmodule.sh",
"test": "cd components && yarn test",
"test:artifacts": "cd scripts && bash ./buildTest.sh && cd ..",
"build": "bash ./scripts/buildComponents.sh",
"link:components": "cd scripts && bash ./linkComponents.sh && cd ..",
"install:dependencies": "yarn && cd demos/showcase && yarn && cd ../../docs && yarn && cd ../components && yarn",
"start:showcase": "yarn initialize && yarn install:dependencies && yarn link:components && cd demos/showcase && yarn start",
"start:docs": "yarn install:dependencies && yarn link:components && cd docs && yarn start",
"start": "yarn start:showcase",
"lint": "cd components && yarn lint && cd .. && cd docs && yarn lint",
"lint:fix": "cd components && yarn lint:fix",
"prettier": "prettier \"*.{json,css,scss,html,md}\" --write && cd components && yarn prettier && cd ../demos/showcase && yarn prettier && cd ../../docs && yarn prettier",
"prettier:check": "prettier \"*.{json,css,scss,html,md}\" --check && cd components && yarn prettier:check && cd ../demos/showcase && yarn prettier:check && cd ../../docs && yarn prettier",
"update:submodule": "git submodule update --remote",
"precommit": "yarn initialize && yarn install:dependencies && yarn prettier && yarn lint && yarn test && yarn build && yarn test:artifacts && yarn generate:licenses",
"coverage": "yarn test --coverage --watchAll=false",
"codecov": "./node_modules/.bin/codecov -f coverage/coverage-final.json",
"publish:package": "cd dist && rm -f *.tgz && set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish",
"tag:package": "cd dist && npx -p @brightlayer-ui/tag blui-tag -s -blui-react-components",
"generate:licenses": "cd ./components && npm-license-crawler -onlyDirectDependencies -json LICENSES.json",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/etn-ccis/blui-react-component-library"
},
"keywords": [
"react",
"components",
"brightlayer-ui"
],
"bugs": {
"url": "https://github.com/etn-ccis/blui-react-component-library/issues"
},
"homepage": "https://github.com/etn-ccis/blui-react-component-library#readme",
"directories": {
"doc": "docs"
},
"author": "Brightlayer UI <brightlayer-ui@eaton.com>",
"license": "BSD-3-Clause",
"devDependencies": {
"@brightlayer-ui/prettier-config": "^1.0.3",
"firebase-tools": "^13.28.0",
"husky": "^9.1.6",
"npm-license-crawler": "^0.2.1",
"prettier": "^3.4.1"
},
"prettier": "@brightlayer-ui/prettier-config"
}