forked from adobe/aio-cli-plugin-app-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.84 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
{
"name": "@adobe/aio-cli-plugin-app-templates",
"version": "1.2.0",
"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": "^0.2.2",
"@adobe/aio-cli-lib-console": "^4.0.0",
"@adobe/aio-lib-console-project-installation": "^2.1.0",
"@adobe/aio-lib-core-config": "^2.0.0",
"@adobe/aio-lib-core-logging": "^1.1.0",
"@adobe/aio-lib-env": "^2.0.0",
"@adobe/aio-lib-ims": "^6.0.1",
"@adobe/aio-lib-templates": "^2.1.0",
"@oclif/core": "^1.9.3",
"chalk": "^4.1.2",
"cli-ux": "^6.0.9",
"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": "^3.9.1"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^1.4.0",
"@types/jest": "^28.1.5",
"acorn": "^7",
"eol": "^0.9.1",
"eslint": "^7.5",
"eslint-config-oclif": "^3.1.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.0.1",
"jest": "^27",
"jest-haste-map": "^24.5.0",
"jest-junit": "^6.0.0",
"jest-resolve": "^24.5.0",
"oclif": "^3.2.0",
"stdout-stderr": "^0.1.9",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=14.0.0"
},
"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": "eslint src test",
"test": "npm run unit-tests",
"unit-tests": "jest --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
}
},
"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"
}
}