-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "howfat",
"version": "0.3.8",
"description": "Shows how fat is a package",
"bin": "src/index.js",
"main": "src/index.js",
"scripts": {
"test": "humile src",
"test:e2e": "humile e2e",
"test:full": "npm test && npm run lint && npm run test:e2e",
"lint": "eslint src",
"postversion": "npm run test:full && git push && git push --tags",
"prepack": "npm run test:full"
},
"typings": "src/index.d.ts",
"repository": "megahertz/howfat",
"files": [
"src/**/*.js",
"src/**/*.ts",
"!**/__specs__/*"
],
"keywords": [
"npm",
"package",
"size",
"dependencies",
"fat"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/howfat/issues",
"homepage": "https://github.com/megahertz/howfat#readme",
"engines": {
"node": ">=14"
},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"humile": "^0.5.0"
},
"dependencies": {
"axios": "^0.26.1",
"npm-package-arg": "^10.0.0",
"package-options": "^0.1.4",
"semver": "^7.3.8",
"tar": "^6.1.12"
}
}