-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
64 lines (64 loc) · 1.55 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
61
62
63
64
{
"name": "deadfile",
"version": "2.1.1",
"description": "Simple util to find deadcode and unused files in any JavaScript project (ES5, ES6, React, Vue, ...)",
"main": "src/index.js",
"homepage": "https://github.com/M-Izadmehr/deadfile",
"scripts": {
"test": "jest",
"docs": "docsify serve ./docs",
"semantic-release": "semantic-release"
},
"bin": {
"deadfile": "src/bin.js"
},
"author": "Mojtaba Izadmehr",
"license": "MIT",
"dependencies": {
"acorn": "^7.1.0",
"acorn-loose": "^7.0.0",
"acorn-walk": "^7.0.0",
"babel-plugin-module-resolver": "^4.0.0",
"boxen": "^4.1.0",
"chalk": "^2.4.2",
"enhanced-resolve": "^4.1.1",
"express": "^4.17.1",
"find-babel-config": "^1.2.0",
"lodash": "^4.17.15",
"lodash.get": "^4.4.2",
"moment": "^2.24.0",
"mustache-express": "^1.3.0",
"opn": "^6.0.0",
"ora": "^4.0.2",
"table": "^5.4.6",
"util": "^0.12.3",
"yargs": "^14.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^3.0.9",
"jest": "^26.1.0",
"lint-staged": "^9.4.2",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/M-Izadmehr/deadfile.git"
}
}