-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.99 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
87
{
"name": "@techrdev/ui-generator",
"version": "0.1.4",
"description": "Techr UI Generator for Design Tokens and more",
"keywords": [
"ui-generator",
"ui",
"generator",
"techr",
"design",
"tokens",
"theme",
"css",
"postcss"
],
"license": "MIT",
"repository": "techrdev/ui-generator",
"author": {
"name": "Alessio Occhipinti",
"email": "[email protected]",
"url": "https://godev.space"
},
"scripts": {
"dev": "ts-node src/cli",
"build": "del-cli dist && tsc",
"prepack": "yarn build",
"lint": "eslint . --ext ts",
"test": "tsc --noEmit && jest --coverage",
"release": "git pull && standard-version && git push --follow-tags"
},
"engines": {
"node": ">=12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": "eslint"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"cssbeautify": "0.3.1",
"figlet": "1.5.0",
"fs-extra": "10.0.0",
"yargs": "15.3.1"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@lasalefamine/eslint-config-base": "1.0.0",
"@lasalefamine/tsconfig": "0.1.0",
"@types/cssbeautify": "0.3.2",
"@types/figlet": "1.5.4",
"@types/fs-extra": "9.0.12",
"@types/jest": "26.0.24",
"@types/node": "16.3.1",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"del-cli": "4.0.0",
"eslint": "7.30.0",
"eslint-plugin-import": "2.23.4",
"husky": "4.2.5",
"jest": "27.0.6",
"jest-file-snapshot": "0.5.0",
"lint-staged": "11.0.0",
"rimraf": "3.0.2",
"standard-version": "9.3.0",
"ts-jest": "27.0.3",
"ts-node": "10.1.0",
"typescript": "4.3.5"
},
"files": [
"dist",
"!*.test.*"
],
"main": "dist",
"types": "dist",
"bin": {
"techrui": "dist/cli.js"
}
}