-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.9 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-lib-template-validation",
"version": "5.0.2",
"description": "Run validation checks on App Builder templates",
"main": "src/import.cjs",
"bin": {
"tv": "src/index.js"
},
"scripts": {
"test": "npm run lint:check && jest --ci",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aio-lib-template-validation.git"
},
"author": "Adobe Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/aio-lib-template-validation/issues"
},
"homepage": "https://github.com/adobe/aio-lib-template-validation#readme",
"files": [
"src"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@adobe/aio-lib-console-project-installation": "^3",
"ajv": "^8.11.0",
"ajv-errors": "^3.0.0",
"commander": "^9.0.0",
"yaml": "^2.0.0"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@jest/globals": "^29.3.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.5.0",
"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",
"jest": "^29",
"jest-junit": "^14.0.0",
"typescript": "^5.3.3"
},
"jest": {
"rootDir": ".",
"testEnvironment": "node",
"verbose": true,
"setupFilesAfterEnv": [
"./tests/jest.setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"collectCoverage": true,
"collectCoverageFrom": [],
"reporters": [
"default",
"jest-junit"
],
"coverageThreshold": {
"global": {
"branches": 100,
"lines": 100,
"statements": 100,
"functions": 100
}
}
}
}