-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "@adobe/aio-lib-sandbox",
"version": "0.1.0-alpha.12",
"description": "JavaScript SDK for Adobe Runtime Sandboxes",
"main": "src/index.js",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/aio-lib-sandbox/issues"
},
"homepage": "https://github.com/adobe/aio-lib-sandbox",
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aio-lib-sandbox.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"ws": "^8.19.0"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"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",
"jest": "^29",
"jest-junit": "^16.0.0"
},
"scripts": {
"lint": "eslint src test",
"lint-fix": "eslint src test --fix",
"test": "npm run unit-tests && npm run lint",
"unit-tests": "jest --ci"
}
}