-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.53 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.53 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
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
{
"name": "@adobe/aio-lib-cloudmanager",
"version": "3.1.2",
"description": "Adobe I/O Cloud Manager Library",
"repository": {
"type": "git",
"url": "https://github.com/adobe/aio-lib-cloudmanager.git"
},
"license": "Apache-2.0",
"main": "src/index.js",
"scripts": {
"generate-jsdoc-types": "curl https://raw.githubusercontent.com/AdobeDocs/cloudmanager-api-docs/main/swagger-specs/api.yaml > api.yaml && node ./tools/generate-jsdoc-types.js > ./src/sdktypes.jsdoc.js",
"test": "npm run lint && npm run unit-tests",
"jscpd": "jscpd --pattern 'src/**/*.js'",
"lint": "eslint src test e2e tools --rulesdir eslint_rules",
"lint-fix": "eslint src test e2e tools --fix --rulesdir eslint_rules",
"unit-tests": "jest --config test/jest.config.js --maxWorkers=2",
"e2e": "jest --config e2e/jest.config.js",
"typings": "jsdoc -t node_modules/tsd-jsdoc/dist -r src/*.js -d .",
"jsdoc": "node ./tools/custom-jsdoc2md.js > README.md",
"generate-docs": "npm run generate-jsdoc-types && npm run typings && npm run jsdoc",
"semantic-release": "semantic-release",
"semantic-release-dry-run": "semantic-release --dry-run",
"prepack": "npm run generate-jsdoc-types && npm run typings",
"version": "npm run generate-docs && git add README.md",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@adobe/aio-lib-core-errors": "^3.1.1",
"@adobe/aio-lib-core-logging": "^2.0.0",
"@adobe/aio-lib-core-networking": "^3.0.0",
"halfred": "^2.0.0",
"lodash.clone": "^4.5.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isobject": "^3.0.2",
"urijs": "^1.19.7",
"uritemplate": "^0.3.4"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "1.4.0",
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.1",
"codecov": "3.8.3",
"command-line-tool": "0.8.0",
"del": "6.0.0",
"dotenv": "16.0.0",
"eol": "0.9.1",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsdoc": "37.9.7",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.2.0",
"eslint-plugin-standard": "4.1.0",
"fetch-mock": "9.11.0",
"handlebars": "4.7.7",
"husky": "5.2.0",
"jest": "27.5.1",
"jest-extended": "2.0.0",
"jest-junit": "13.0.0",
"js-yaml": "4.1.0",
"jscpd": "3.4.5",
"jsdoc": "3.6.10",
"jsdoc-to-markdown": "7.1.1",
"lodash.sortby": "4.7.0",
"pinst": "3.0.0",
"semantic-release": "17.4.7",
"sinon": "13.0.1",
"stdout-stderr": "0.1.13",
"tsd-jsdoc": "2.5.0"
},
"engines": {
"node": ">=17"
},
"release": {
"branches": [
"main"
],
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogTitle": "# Changelog"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"README.md",
"CHANGELOG.md",
"package.json",
"src/sdktypes.jsdoc.js",
"types.d.ts"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}