-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 956 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 956 Bytes
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
{
"name": "repo_scanner",
"version": "1.0.0",
"description": "This app will scan repositories missing packages",
"main": "./src/index.js",
"bin": {
"@your_npm_username/scanner": "./bin/scanner",
"scanner": "./bin/scanner"
},
"scripts": {
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"arg": "^5.0.0",
"axios": "^0.21.1",
"depcheck": "^1.3.1",
"esm": "^3.2.25",
"inquirer": "^7.3.3",
"nodegit": "^0.27.0"
},
"devDependencies": {
"@babel/preset-react": "^7.12.13",
"@babel/runtime": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^26.6.3"
}
}