UNPKG

our-journey

Version:

Our Journey interactive student journey creator. | © 2018 The Open University (IET-OU).

125 lines (124 loc) 2.84 kB
{ "name": "our-journey", "description": "Our Journey interactive student journey creator. | © 2018 The Open University (IET-OU).", "version": "1.6.6", "license": "GPL-3.0+", "main": "index.js", "browser": "dist/our-journey.js", "author": { "name": "Tim Coughlan" }, "contributors": [ { "name": "Glen Darby {graphic designer}" }, { "name": "Nick Freear" }, { "name": "The LTI-LTT developers (IET-OU)", "email": "iet-ltt-support@open.ac.uk", "url": "https://iet.open.ac.uk" } ], "homepage": "https://ourjourney.ac.uk/v1/?utm_source=npm", "repository": "https://github.com/IET-OU/our-journey", "bugs": "https://github.com/IET-OU/our-journey/issues", "keywords": [ "accessibility", "education", "learning-journey", "student-experience" ], "engines": { "node": ">= 8", "npm": ">= 5.2.0" }, "devDependencies": { "browserify": "^17.0.0", "browserify-versionify": "^1.0.6", "eslint-plugin-compat": "^6.0.1", "jsdoc": "^4.0.4", "lint": "^1.1.2", "pa11y-ci": "^2.4.2", "pa11y-config": "git+https://github.com/nfreear/pa11y-config.git#0.9.0", "semistandard": "^16.0.1", "stringify": "^5.2.0", "uglify-es": "^3.3.9" }, "peerDependencies": { "eslint": "^7.32.0", "husky": "^7.0.2" }, "husky": { "hooks": { "pre-commit": "npm run build && npm test" } }, "semistandard": { "ignore": [ "dist/", "dropbox/" ] }, "eslintConfig": { "extends": "", "parserOptions": { "ecmaVersion": 6 }, "plugins": [ "compat" ], "rules": { "compat/compat": "error" } }, "eslintIgnore": [ "dist/" ], "browserslist": "last 1 version, > 1%, not dead, not ie < 99", "pa11yCiConfig": { "defaults": { "standard": "WCAG2AA", "timeout": 5000 }, "urls": [ "http://127.0.0.1:9001/test/test.html?demo=1&_ua=pa11y-ci" ] }, "files": [ "index.html", "assets/", "dist/*.js", "src/", "style/*.css" ], "browserify": { "transform": [ [ "browserify-versionify", { "placeholder": "__VERSION__" } ], [ "stringify", { "extensions": [ ".html", ".svg" ] } ] ] }, "scripts": { "build": "browserify --no-bf -r ./index.js:our-journey > dist/our-journey.js && npm run uglify", "uglify": "uglifyjs dist/*y.js -mco dist/our-journey.min.js && node src/addBanner.js", "x-pa11yci-2x-preinstall": "export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 # A hack!", "jsdoc": "jsdoc -c docs/conf.json", "fix": "semistandard --fix", "pa11y-ci": "pa11y-config --pkg && pa11y-ci", "test": "semistandard && npm run jsdoc" } }