-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 913 Bytes
/
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
{
"name": "compversions",
"version": "0.1.5",
"description": "Compares your package.json to your package-lock.json to let you see packages that resolved to different versions.",
"scripts": {
"build": "babel src -d dist"
},
"engines": {
"node": ">=10"
},
"bin": {
"compversions": "dist/index.js"
},
"main": "compversions",
"files": [ "dist" ],
"repository": {
"type": "git",
"url": "https://github.com/belav/compversions"
},
"keywords": [
"package.json",
"package-lock.json",
"compare",
"versions"
],
"author": "Bela VanderVoort",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/belav/compversions/issues"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}