-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "@spark-build/lint",
"version": "0.0.18",
"description": "a collection of configuration files containing prettier, eslint, stylelint by umi fabric",
"author": "[email protected]",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"bin": {
"create-lint-config": "dist/bin/index.js"
},
"np": {
"yarn": false,
"contents": "dist"
},
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.json && node copy.js",
"publishPkg": "yarn build && npm version patch && npm publish",
"publishPackage": "yarn build && np --no-cleanup --yolo --any-branch",
"prepublishPackage": "yarn build && np --no-cleanup --yolo --no-publish --any-branch"
},
"dependencies": {
"@umijs/fabric": "^2.8.1",
"chalk": "^5.0.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.2.0",
"prettier": "^2.5.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3"
},
"engines": {
"node": ">=14"
}
}