-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.97 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "acrool-icon-symbols",
"version": "1.3.7-alpha.1",
"description": "Common tools and methods for project development",
"keywords": [
"typescript",
"javscript",
"utils"
],
"author": "imagine10255",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/acrool/acrool-icon-symbols.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "bin/cli.js",
"files": [
"dist",
"bin",
"config"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "run-s build:claer && tsc --project ./tsconfig.build.json && run-s copy-dts",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist",
"build:claer": "rm -rf ./dist",
"prepublishOnly": "run-s build",
"test": "jest --coverage",
"gitlog": "git log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cblueby %an %Cgreen(%cr)%Creset'",
"lint:fix": "eslint src/lib/*.ts --fix",
"cz": "git cz",
"release": "standard-version --release-as",
"release:major": "standard-version -r major",
"release:minor": "standard-version -r minor",
"release:patch": "standard-version -r patch",
"release:alpha": "standard-version --prerelease alpha"
},
"dependencies": {
"ora": "^8.0.1",
"svg-parser": "^2.0.4",
"yargs": "^17.7.2",
"cheerio": "^1.0.0-rc.12",
"@acrool/js-utils": "^3.2.13"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/user-event": "^7.2.1",
"@types/svg-parser": "^2.0.6",
"@types/cheerio": "^0.22.31",
"@types/jest": "^27.4.0",
"@types/node": "18.0.0",
"@types/yargs": "17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-eslint": "^10.0.3",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "6.3.0",
"eslint": "^8.8.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"standard-version": "9.5.0",
"ts-jest": "^27.1.3",
"ts-node": "10.8.1",
"typescript": "4.7.4"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"rules": {
"quotes": [
"warn",
"single"
],
"semi": [
"warn",
"always"
],
"indent": [
"warn",
4
],
"object-curly-spacing": [
"warn",
"never"
],
"no-useless-escape": "off",
"import/no-anonymous-default-export": "off",
"react-hooks/exhaustive-deps": "off",
"@typescript-eslint/no-unused-vars": "off",
"no-mixed-operators": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-var-requires": "off"
}
}
}