forked from adobe/aio-lib-cloudmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.37 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
{
"name": "@adobe/aio-lib-cloudmanager",
"version": "0.3.5",
"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/master/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 --rulesdir eslint_rules",
"lint-fix": "eslint src test e2e --fix",
"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": "jsdoc2md -t ./docs/readme_template.md src/**/*.js > README.md",
"generate-docs": "npm run generate-jsdoc-types && npm run typings && npm run jsdoc",
"semantic-release": "semantic-release",
"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.0.0",
"@adobe/aio-lib-core-logging": "^1.1.2",
"cross-fetch": "^3.0.4",
"halfred": "^2.0.0",
"lodash": "^4.17.20",
"uritemplate": "^0.3.4"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "1.2.1",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"codecov": "3.8.2",
"del": "6.0.0",
"dotenv": "10.0.0",
"eol": "0.9.1",
"eslint": "7.28.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jsdoc": "33.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"fetch-mock": "9.11.0",
"husky": "5.2.0",
"jest": "27.0.4",
"jest-junit": "12.1.0",
"js-yaml": "4.1.0",
"jscpd": "3.3.26",
"jsdoc": "3.6.7",
"jsdoc-to-markdown": "7.0.1",
"pinst": "2.1.6",
"semantic-release": "17.4.3",
"sinon": "11.1.1",
"stdout-stderr": "0.1.13",
"tsd-jsdoc": "2.5.0"
},
"engines": {
"node": ">=10.22.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"footer-max-line-length": [
0
],
"body-max-line-length": [
0
]
}
},
"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"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}