-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "eslint-plugin-tree-shaking",
"description": "Marks all side-effects in module initialization that will interfere with tree-shaking",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"tree-shaking",
"side-effects",
"rollup",
"webpack"
],
"files": [
"lib"
],
"author": "Lukas Taegert",
"main": "lib/index.js",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "vitest run",
"lint": "eslint --fix *.js src/**/*.ts tests/**/*.ts",
"semantic-release": "semantic-release",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.11",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^17.7.0",
"@types/eslint": "^8.44.7",
"@types/estree": "^1.0.5",
"@types/estree-jsx": "^1.0.3",
"@typescript-eslint/parser": "^6.5.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rollup": "^3.28.1",
"semantic-release": "^21.1.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lukastaegert/eslint-plugin-tree-shaking.git"
},
"version": "0.0.0-development"
}