-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
151 lines (151 loc) · 4.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "@h4ad/node-modules-packer",
"version": "1.3.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.ts",
"scripts": {
"prepare": "husky install",
"build": "rimraf lib && tsc -p tsconfig.build.json",
"postpack": "rimraf oclif.manifest.json",
"prepack": "npm run build && oclif manifest && oclif readme",
"clean": "rm -rf ./lib/",
"cm": "cz",
"coverage": "codecov --disable=gcov",
"lint": "eslint ./src/ ./test/ --fix",
"semantic-release": "semantic-release",
"pretest": "npm run build",
"test": "nyc --extension .ts --reporter=html --reporter=json mocha --forbid-only \"test/**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"version": "oclif readme && git add README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/H4ad/node-modules-packer.git"
},
"license": "MIT",
"author": {
"name": "Vinícius Lourenço",
"email": "[email protected]",
"url": "https://github.com/H4ad"
},
"engines": {
"node": ">=14.0"
},
"keywords": [
"dependencies",
"node modules",
"packer",
"pack",
"compact",
"compact node modules",
"pack node modules",
"gzip node modules",
"zip node modules",
"serverless",
"serverless bundler"
],
"bugs": {
"url": "https://github.com/H4ad/node-modules-packer/issues"
},
"homepage": "https://github.com/H4ad/node-modules-packer#readme",
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"bin": {
"pack": "./bin/run"
},
"oclif": {
"bin": "node-modules-packer",
"dirname": "node-modules-packer",
"commands": "./lib/commands",
"default": "run",
"topicSeparator": ":",
"topics": {
"run": {
"description": "Pack files and node dependencies to zip file."
}
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"@oclif/plugin-version",
"@oclif/plugin-commands",
"@oclif/plugin-autocomplete"
]
},
"dependencies": {
"@h4ad/dependency-extractor": "1.1.0",
"@oclif/core": "^1",
"@oclif/plugin-autocomplete": "^1.3.0",
"@oclif/plugin-commands": "^2.2.0",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.1.0",
"@oclif/plugin-version": "^1.1.1",
"esbuild": "~0.15.7",
"graceful-fs": "^4.2.10",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"yazl": "^2.5.1"
},
"devDependencies": {
"@oclif/test": "^2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@types/bluebird": "^3.5.36",
"@types/chai": "^4",
"@types/graceful-fs": "^4.1.5",
"@types/mocha": "^9.0.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "14.18.34",
"@types/plist": "^3.0.2",
"@types/rimraf": "^3.0.2",
"@types/terser": "^3.12.0",
"@types/uglify-js": "^3.16.0",
"@types/unzipper": "^0.10.5",
"@types/yazl": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"c8": "^7.12.0",
"chai": "^4",
"codecov": "^3.8.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"ejs": "^3.1.6",
"eslint": "^8.9.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^9",
"mock-fs": "^5.1.2",
"nyc": "^15.1.0",
"oclif": "^3",
"prettier": "^2.5.1",
"semantic-release": "^19.0.3",
"tape": "^5.5.3",
"ts-node": "^10.4.0",
"tslib": "^2.4.0",
"typescript": "^4.5.5",
"unzipper": "^0.10.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"publishConfig": {
"access": "public"
}
}