-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "create-easy-lint",
"version": "1.0.8",
"description": "",
"main": "lib/bundle.cjs.js",
"module": "lib/bundle.esm.js",
"bin": {
"create-easy-lint": "bin/index.js"
},
"scripts": {
"build": "rimraf lib/* && rollup -c",
"watch": "rimraf lib/* && rollup -c -w",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --loglevel warn"
},
"dependencies": {
"kolorist": "^1.6.0",
"nanospinner": "^1.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vitest/coverage-c8": "^0.23.4",
"eslint": "^8.9.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.68.0",
"rollup-plugin-node-externals": "^4.0.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"vitest": "^0.23.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AutumnWhj/easy-lint"
},
"author": "Jin (https://github.com/AutumnWhj)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AutumnWhj/easy-lint/issues"
},
"homepage": "https://github.com/AutumnWhj/easy-lint#readme"
}