-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.14 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.14 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
{
"name": "@adobe/aio-cli-lib-app-config",
"version": "4.2.0",
"description": "node lib to provide a consistent interface to various config files that make up Adobe Developer App Builder applications and extensions",
"repository": "https://github.com/adobe/aio-cli-lib-app-config/",
"license": "Apache-2.0",
"main": "src/index.js",
"files": [
"src",
"schema"
],
"scripts": {
"test": "npm run lint && npm run unit-tests",
"lint": "eslint src test",
"unit-tests": "jest --config jest.config.js --maxWorkers=2",
"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 typings && npm run jsdoc"
},
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-env": "^3",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"fs-extra": "^9.0.1",
"js-yaml": "^3.14.0",
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"babel-runtime": "^6.26.0",
"eol": "^0.9.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^29",
"jest-junit": "^10.0.0",
"jest-plugin-fs": "^2.9.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.0",
"stdout-stderr": "^0.1.9",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=20"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"lines": 100,
"statements": 100
}
},
"testPathIgnorePatterns": [
"<rootDir>/jest.setup.js"
],
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/jest.setup.js"
]
}
}