-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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
{
"name": "@adobe/aio-lib-target",
"version": "4.0.1",
"description": "Adobe Target SDK",
"repository": "https://github.com/adobe/aio-lib-target",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run unit-tests",
"lint": "eslint src test e2e",
"beautify": "eslint src test e2e --fix",
"unit-tests": "jest --coverage --ci -w=2",
"e2e": "jest --testRegex './e2e/e2e.js'",
"generate-docs": "jsdoc2md -t ./docs/readme_template.md ./src/index.js > README.md",
"validate": "bin/validate_spec.js spec/target_api.json"
},
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"swagger-client": "^3.19.10"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"dotenv": "^16.3.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": "^5.0.0",
"fetch-mock": "^9.10.3",
"jest": "^29.6.1",
"jest-cli": "^29.5.0",
"jest-junit": "^16.0.0",
"jest-plugin-fs": "^2.9.0",
"jsdoc-to-markdown": "^8.0.0",
"node-fetch": "^2.6.0",
"openapi-schema-validator": "^12.1.0",
"typescript": "^5.1.6"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/test/jest.setup.js"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test/jest.setup.js"
]
},
"engines": {
"node": ">=18"
}
}