UNPKG

aurelia-testing

Version:

A collection of helpers for testing Aurelia apps and components.

84 lines (83 loc) 2.71 kB
{ "name": "aurelia-testing", "version": "1.1.0", "description": "A collection of helpers for testing Aurelia apps and components.", "keywords": [ "aurelia", "testing" ], "homepage": "http://aurelia.io", "bugs": { "url": "https://github.com/aurelia/testing/issues" }, "license": "MIT", "author": "Rob Eisenberg <rob@bluespire.com> (http://robeisenberg.com/)", "main": "dist/commonjs/aurelia-testing.js", "typings": "dist/types/aurelia-testing.d.ts", "repository": { "type": "git", "url": "http://github.com/aurelia/testing" }, "files": [ "dist", "doc/CHANGELOG.md", "LICENSE", "typings.json" ], "scripts": { "test": "karma start --single-run", "test:watch": "karma start", "test:debugger": "karma start --browsers ChromeDebugging", "lint": "eslint .", "prebuild": "rimraf dist", "build": "rollup -c", "build:dts": "dts-bundle-generator -o dist/types/aurelia-testing.d.ts src/aurelia-testing.ts", "postbuild": "npm run build:dts", "typedoc": "typedoc src/aurelia-testing.ts --json doc/api.json", "posttypedoc": "node doc/cleanup.js", "changelog": "standard-version -t \"\" -i doc/CHANGELOG.md --skip.commit --skip.tag", "precut-release": "npm run test && npm run lint && npm run build", "cut-release": "npm run changelog", "postcut-release": "npm run typedoc" }, "dependencies": { "aurelia-dependency-injection": "^1.0.0", "aurelia-framework": "^1.4.1", "aurelia-logging": "^1.0.0", "aurelia-pal": "^1.0.0", "aurelia-templating": "^1.11.1" }, "devDependencies": { "@rollup/plugin-typescript": "^8.3.2", "@types/jasmine": "^4.0.3", "@types/estree": "0.0.51", "@typescript-eslint/eslint-plugin": "^5.17.0", "@typescript-eslint/parser": "^5.17.0", "eslint": "^8.12.0", "aurelia-bootstrapper": "^2.4.0", "aurelia-pal-browser": "^1.3.0", "aurelia-polyfills": "^1.2.2", "aurelia-webpack-plugin": "^5.0.4", "concurrently": "^7.1.0", "cross-env": "^7.0.3", "dts-bundle-generator": "^6.9.0", "html-loader": "^3.1.0", "jasmine-core": "^4.1.0", "karma": "^6.3.19", "karma-chrome-launcher": "^3.1.1", "karma-coverage": "^2.2.0", "karma-jasmine": "^5.0.0", "karma-mocha-reporter": "^2.2.5", "karma-sourcemap-loader": "^0.3.8", "karma-webpack": "^5.0.0", "rimraf": "^3.0.2", "rollup": "^2.72.0", "standard-version": "^9.3.2", "ts-loader": "^9.3.0", "tslib": "^2.4.0", "typedoc": "^0.22.15", "typescript": "^4.6.4", "webpack": "^5.72.0", "webpack-cli": "^4.9.2" } }