-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "eslint-disabled-stats",
"version": "1.2.0",
"main": "dist/index.js",
"license": "MIT",
"homepage": "https://github.com/CorentinDoue/eslint-disabled-stats",
"author": "Corentin Doué",
"scripts": {
"start": "tsc --watch",
"build": "rimraf dist && tsc",
"prepare": "yarn build",
"test": "jest",
"test:integration": "jest --config jest.integration.config.js --runInBand",
"prettier": "prettier . -c",
"prettier:fix": "prettier . --write",
"lint": "eslint --quiet 'src/**/*.ts'",
"lint:fix": "eslint --quiet --fix 'src/**/*.ts'"
},
"bin": {
"eslint-disabled-stats": "dist/cli.js"
},
"dependencies": {
"chalk": "^4.1.0",
"esprima": "^4.0.1",
"fast-glob": "^3.2.4",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"meow": "^7.1.1",
"ora": "^5.1.0"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/chalk": "^2.2.0",
"@types/esprima": "^4.0.2",
"@types/figlet": "^1.2.0",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.164",
"@types/meow": "^5.0.0",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.2.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3"
}
}