-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "aio-apps-action",
"version": "3.3.1",
"description": "GitHub Action to Build, Test and Deploy AIO Apps",
"scripts": {
"lint-fix": "npm run lint -- --fix",
"lint": "eslint src test",
"test": "npm run unit-tests && npm run lint && npm run package",
"unit-tests": "jest -c jest.config.js",
"package": "ncc build src/index.js -o dist/"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@adobe/aio-lib-ims": "7.0.0",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^3.0.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsdoc": "^42.0.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"stdout-stderr": "^0.1.13",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}