-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "eslint-plugin-barrels",
"version": "1.0.0",
"description": "Plugin with prohibition of import / export from barrel files",
"main": "lib/index.js",
"scripts": {
"build": "rimraf dist && npx tsc -p tsconfig.build.json && copyfiles package.json README.md LICENSE.md dist",
"lint": "eslint src/**",
"test": "mocha"
},
"keywords": [
"eslint",
"plugin",
"barrel files",
"no barrel files",
"import barrel"
],
"author": {
"name": "Diana Kozachenko",
"email": "kozachenkodiana03@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/DKozachenko/eslint-plugin-barrels"
},
"bugs": {
"url": "https://github.com/DKozachenko/eslint-plugin-barrels/issues",
"email": "kozachenkodiana03@gmail.com"
},
"homepage": "https://github.com/DKozachenko/eslint-plugin-barrels/blob/develop/README.md",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@typescript-eslint/rule-tester": "^6.14.0",
"@typescript-eslint/utils": "^6.14.0",
"copyfiles": "^2.4.1",
"eslint": "^8.55.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}