feat: prototype adapter from example-web-client
This is not yet ready. I want to test installing it as a dependency of the example-web-client and running it before going any further.
#100845
failed
with stages
in
0 seconds
Pipeline
Showing
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.prettierignore
0 → 100644
.prettierrc
0 → 100644
LICENCE.md
0 → 100644
commitlint.config.js
0 → 100644
comms-adapter/index.js
0 → 100644
jest.config.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "@noc-comms-backbone/backbone-adapter-javascript", | ||
"version": "1.0.0", | ||
"private": true, | ||
"contributors": [ | ||
{ | ||
"name": "James Kirk", | ||
"email": "james.kirk@noc.ac.uk" | ||
}, | ||
{ | ||
"name": "Dan Jones", | ||
"email": "dan.jones@noc.ac.uk" | ||
}, | ||
{ | ||
"name": "Trishna Saeharaseelan", | ||
"email": "trishna.saeharaseelan@noc.ac.uk" | ||
} | ||
], | ||
"license": "MIT", | ||
"scripts": { | ||
"lint:js": "eslint --ext \".js\" --ignore-path .gitignore .", | ||
"lint:prettier": "prettier --check .", | ||
"lint": "yarn lint:js && yarn lint:prettier", | ||
"lintfix": "prettier --write --list-different . && yarn lint:js --fix", | ||
"prepare": "husky install", | ||
"test": "jest" | ||
}, | ||
"lint-staged": { | ||
"*.{js,vue}": "eslint --cache", | ||
"*.**": "prettier --check --ignore-unknown" | ||
}, | ||
"dependencies": { | ||
"faye-websocket": "^0.11.4", | ||
"swagger-model-validator": "^3.0.21" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.0.0-0", | ||
"@babel/eslint-parser": "^7.0.0", | ||
"@commitlint/cli": "^15.0.0", | ||
"@commitlint/config-conventional": "^15.0.0", | ||
"babel-jest": "^27.4.4", | ||
"cucumber": "^6.0.7", | ||
"eslint": "^8.4.1", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"husky": "^7.0.4", | ||
"jest": "^27.4.4", | ||
"lint-staged": "^12.1.2", | ||
"prettier": "^2.5.1" | ||
} | ||
} |
test/mock/swagger.json
0 → 100644
yarn.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment