-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 1.82 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
{
"name": "@adobe/aio-template-submission",
"author": "Adobe Inc.",
"version": "1.0.0",
"description": "Run validation checks on NPM packages that are App Builder templates",
"license": "Apache-2.0",
"scripts": {
"test": "npm run lint:check && npm run unit-tests",
"unit-tests": "jest --ci",
"lint:check": "eslint --ext .js .",
"lint:fix": "eslint --ext .js --fix ."
},
"bugs": {
"url": "https://github.com/adobe/aio-template-submission/issues"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.1",
"@adobe/aio-lib-template-validation": "^5.0.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"axios": "^0.26.1",
"fs": "0.0.1-security",
"uuid": "^8.3.2",
"validate-npm-package-name": "^4.0.0",
"yaml": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.5.1",
"jest-junit": "^14.0.0",
"jest-nock": "^0.2.2",
"jest-when": "^3.5.1"
},
"jest": {
"rootDir": ".",
"testEnvironment": "node",
"verbose": true,
"setupFilesAfterEnv": [
"./tests/jest.setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/tests/__fixtures__/"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/tests/__fixtures__/"
],
"collectCoverageFrom": [],
"reporters": [
"default",
"jest-junit"
],
"coverageThreshold": {
"global": {
"branches": 97,
"lines": 95,
"statements": 95
}
}
},
"engines": {
"node": "^20"
}
}