-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "@adobe/aio-e2e-tests",
"version": "0.1.0",
"description": "End to end tests for aio-* repositories",
"main": "src/run.js",
"scripts": {
"all": "node src/index.js",
"test": "npm run unit-tests && npm run lint",
"unit-tests": "jest --ci -c jest.config.js",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "[email protected]:CNA/aio-e2e-tests.git"
},
"keywords": [
"e2e-testing",
"testing",
"aio",
"adobe-io"
],
"author": "Adobe Inc.",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^2.4.2",
"dotenv": "^16.3.1",
"execa": "^2.1.0",
"form-data": "^4.0.0",
"fs-extra": "^8.1.0",
"jsonwebtoken": "^9.0.1",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^2.0.0",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.7.0",
"stdout-stderr": "^0.1.13",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=8.3.0"
}
}