-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 KB
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
{
"name": "@handy-common-utils/dev-utils",
"version": "1.8.0",
"description": "Utilities for the convenience of developers",
"main": "dist/dev-utils.js",
"types": "dist/dev-utils.d.ts",
"bin": {
"generate-api-docs-and-update-readme": "dist/bin/generate-api-docs-and-update-readme.js"
},
"scripts": {
"pretest": "eslint . --ext .ts",
"test": "nyc mocha",
"fixPeerDependencies": "replace-in-files '\"serverless\": *\".+?\",*' '' node_modules/serverless-plugin-git-variables/package.json package-lock.json",
"prepare": "shx rm -rf dist && npm run fixPeerDependencies && tsc && shx chmod +x dist/bin/*.js && es-check",
"preversion": "npm run prepare && dist/bin/generate-api-docs-and-update-readme.js && git add README.md"
},
"files": [
"package.json",
".eslintignore",
".eslintrc.*",
".nycrc.*",
"tsconfig.*",
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/handy-common-utils/dev-utils.git"
},
"keywords": [
"handy-common-utils",
"dev",
"utils"
],
"author": "James Hu",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/handy-common-utils/dev-utils/issues"
},
"homepage": "https://github.com/handy-common-utils/dev-utils#readme",
"dependencies": {
"@handy-common-utils/fs-utils": "^1.1.2",
"concat-md": "^0.5.1",
"lodash": "^4.17.21",
"serverless-plugin-git-variables": "^5.2.0",
"typedoc": "^0.28.5",
"typedoc-plugin-markdown": "^4.6.4",
"yaml": "^2.8.0"
},
"devDependencies": {
"@handy-common-utils/dev-dependencies-mocha": "^1.6.1",
"@types/lodash": "^4.17.17",
"@types/node": "^25.0.2",
"typescript": "^5.8.3"
},
"bundleDependencies": [
"serverless-plugin-git-variables"
]
}