-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
105 lines (105 loc) · 2.87 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
{
"name": "@adobe/aio-cli-plugin-app-templates",
"version": "2.0.3",
"description": "Discover, Install, Uninstall, Submit, and Remove Adobe App Builder templates",
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aio-cli-plugin-app-templates.git"
},
"dependencies": {
"@adobe/aio-cli-lib-app-config": "^4",
"@adobe/aio-cli-lib-console": "^5",
"@adobe/aio-lib-console-project-installation": "^3",
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-env": "^3",
"@adobe/aio-lib-ims": "^7",
"@adobe/aio-lib-templates": "^3",
"@oclif/core": "^1.9.3",
"chalk": "^4.1.2",
"execa": "^4.1.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4",
"js-yaml": "^3.14.1",
"node-fetch": "^2.6.7",
"ora": "^4.1.1",
"yeoman-environment": "^4.2.1"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^3.0.0",
"@types/jest": "^28.1.5",
"acorn": "^7",
"cross-env": "^7.0.3",
"eol": "^0.9.1",
"eslint": "^8.56.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.2",
"eslint-plugin-jsdoc": "^42.0.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.7.0",
"jest-junit": "^6.0.0",
"jest-resolve": "^24.5.0",
"oclif": "^4.3.6",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=18"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topicSeparator": " ",
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"main": "src/index.js",
"scripts": {
"pretest": "npm run lint:check",
"test": "npm run unit-tests",
"unit-tests": "cross-env NODE_OPTIONS=--experimental-vm-modules ./node_modules/jest/bin/jest.js --ci",
"prepack": "oclif manifest && oclif readme --no-aliases",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif readme && git add README.md",
"lint:check": "eslint --ext .js .",
"lint:fix": "eslint --ext .js --fix ."
},
"jest": {
"rootDir": ".",
"coverageThreshold": {
"global": {
"branches": 100,
"lines": 100,
"statements": 100,
"functions": 100
}
},
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>/test/__fixtures__/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/test/__fixtures__/"
],
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"resolver": "<rootDir>/test/resolver.js"
}
}