This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
forked from etn-ccis/blui-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.98 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@brightlayer-ui/cli",
"version": "3.0.0",
"description": "A command-line interface for quickly scaffolding Brightlayer UI applications",
"scripts": {
"lint": "eslint \"src/**/**.ts\"",
"lint:fix": "eslint \"src/**/**.ts\" --fix",
"prettier:check": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"prettier": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish",
"tag:package": "npx -p @brightlayer-ui/tag blui-tag",
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "if [ -e ./src/templates ]; then cp -a ./src/templates ./build/; fi",
"build": "yarn prettier && yarn lint && yarn clean-build && yarn compile && yarn copy-templates",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "yarn test --coverage --watchAll=false",
"precommit": "yarn && yarn prettier && yarn build && yarn test && yarn generate:licenses",
"build:local": "blui --version && blui new --beta",
"generate:licenses": "npm-license-crawler -onlyDirectDependencies -json LICENSES.json"
},
"dependencies": {
"@angular/cli": "^14.0.0",
"create-react-app": "^5.0.1",
"gluegun": "^5.1.0",
"react-native": "^0.70.0",
"react-native-asset": "^2.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"devDependencies": {
"@brightlayer-ui/eslint-config": "^3.0.0",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"codecov": "^3.8.3",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"npm-license-crawler": "^0.2.1",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3"
},
"repository": {
"url": "https://github.com/brightlayer-ui/brightlayer-ui-cli",
"type": "git"
},
"keywords": [
"Brightlayer UI",
"Command-line Interface",
"CLI",
"Eaton",
"Angular",
"React",
"React Native"
],
"bin": {
"blui": "bin/blui"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"LICENSE",
"README.md",
"CHANGELOG.md",
"bin"
],
"author": {
"name": "Brightlayer UI",
"email": "[email protected]"
},
"homepage": "https://github.com/brightlayer-ui/brightlayer-ui-cli",
"license": "BSD-3-Clause",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageDirectory": "./coverage",
"collectCoverage": true
},
"prettier": "@brightlayer-ui/prettier-config"
}