-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "latest-package-version",
"version": "1.0.3",
"description": "Get latest npm package version for list of packages in a json object format",
"main": "lib/index.js",
"homepage": "https://github.com/patelvimal/latest-package-version",
"bugs": "https://github.com/patelvimal/latest-package-version/issues",
"scripts": {
"build": "rollup -c",
"example": "ts-node example/main.ts",
"postbuild": "uglifyjs -mc -o lib/index.js lib/index.js"
},
"files": [
"lib",
"package.json"
],
"author": {
"name": "Vimal Patel",
"email": "[email protected]",
"url": "https://github.com/patelvimal/"
},
"repository": {
"type": "git",
"url": "https://github.com/patelvimal/latest-package-version.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.31",
"rollup": "^2.40.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.2",
"uglify-js": "^3.12.8"
},
"dependencies": {},
"keywords": [
"info",
"npm",
"package",
"package.json",
"current",
"module",
"npm",
"version",
"author"
]
}