-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.1 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
{
"name": "depsane",
"version": "0.1.0",
"bin": {
"depsane": "bin/depsane.js"
},
"repository": {
"type": "git",
"url": "[email protected]:BonnierNews/depsane.git"
},
"description": "Checks for missing dependencies based on code reachable from the main entrypoint specified in package.json",
"main": "index.js",
"scripts": {
"test": "mocha && ./bin/depsane.js . --ignore-dirs test/data",
"lint": "eslint ."
},
"author": "Bonnier News",
"keywords": [
"check",
"unused",
"package",
"packages",
"depcheck",
"dependency",
"dependencies",
"devDependencies"
],
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.17.3",
"@babel/traverse": "^7.17.3",
"is-core-module": "^2.7.0",
"micromatch": "^4.0.4",
"minimist": "^1.2.5",
"readdirp": "^3.6.0"
},
"files": [
"bin/",
"lib/",
"index.js",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.3.0",
"eslint-config-exp": "^0.7.0",
"mocha": "^9.2.1",
"mocha-cakes-2": "^3.3.0"
}
}