"pynemo/git@git.noc.ac.uk:thopri/PyNEMO.git" did not exist on "14ffd7d324496a66cc3d88dfd8b2b1b5ff765ba6"
Merge branch '15-release-v0-1' into 'master'
Resolve "Release v0.1" See merge request !15
Showing
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.prettierignore
0 → 100644
.prettierrc.js
0 → 100644
CHANGELOG.md
0 → 100644
LICENCE.md
0 → 100644
commitlint.config.js
0 → 100644
cucumber.js
0 → 100644
dist/adapter.esm.js
0 → 100644
dist/adapter.js
0 → 100644
dist/protocol.esm.js
0 → 100644
dist/protocol.js
0 → 100644
jest.config.js
0 → 100644
package.json
0 → 100644
{ | |||
"name": "@noc-comms-backbone/backbone-adapter-javascript", | |||
"version": "0.1.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": { | |||
"copytest:features": "npx recursive-copy -w node_modules/backbone-adapter-testsuite/features test/features", | |||
"copytest:fixtures": "npx recursive-copy -w node_modules/backbone-adapter-testsuite/fixtures test/fixtures", | |||
"copytests": "npm run copytest:features && npm run copytest:fixtures", | |||
"lint:js": "eslint -c .eslintrc.js --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": "yarn build && yarn cucumber", | |||
"cucumber": "cucumber-js", | |||
"build": "cross-env NODE_ENV=production rollup -c" | |||
}, | |||
"lint-staged": { | |||
"*.{js,vue}": "eslint --cache", | |||
"*.**": "prettier --check --ignore-unknown" | |||
}, | |||
"dependencies": { | |||
"faye-websocket": "^0.11.4", | |||
"json-schema-remote": "^1.6.2", | |||
"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", | |||
"@cucumber/cucumber": "^8.10.0", | |||
"@rollup/plugin-babel": "^6.0.3", | |||
"axios": "^1.2.3", | |||
"axios-mock-adapter": "^1.21.2", | |||
"babel-jest": "^27.4.4", | |||
"backbone-adapter-testsuite": "git+https://git.noc.ac.uk/communications-backbone-system/backbone-adapter-testsuite.git#v0.1.0", | |||
"cross-env": "^7.0.3", | |||
"eslint": "^8.36.0", | |||
"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", | |||
"openapi-schema-validator": "^12.1.0", | |||
"prettier": "^2.8.4", | |||
"recursive-copy-cli": "^1.0.20", | |||
"rollup": "^3.9.1" | |||
} | |||
} |
rollup.config.js
0 → 100644
run-tests.sh
0 → 100755
src/adapter/index.js
0 → 100644
Please register or sign in to comment