UNPKG

2.71 kBJSONView Raw
1{
2 "name": "aurelia-testing",
3 "version": "1.1.0",
4 "description": "A collection of helpers for testing Aurelia apps and components.",
5 "keywords": [
6 "aurelia",
7 "testing"
8 ],
9 "homepage": "http://aurelia.io",
10 "bugs": {
11 "url": "https://github.com/aurelia/testing/issues"
12 },
13 "license": "MIT",
14 "author": "Rob Eisenberg <rob@bluespire.com> (http://robeisenberg.com/)",
15 "main": "dist/commonjs/aurelia-testing.js",
16 "typings": "dist/types/aurelia-testing.d.ts",
17 "repository": {
18 "type": "git",
19 "url": "http://github.com/aurelia/testing"
20 },
21 "files": [
22 "dist",
23 "doc/CHANGELOG.md",
24 "LICENSE",
25 "typings.json"
26 ],
27 "scripts": {
28 "test": "karma start --single-run",
29 "test:watch": "karma start",
30 "test:debugger": "karma start --browsers ChromeDebugging",
31 "lint": "eslint .",
32 "prebuild": "rimraf dist",
33 "build": "rollup -c",
34 "build:dts": "dts-bundle-generator -o dist/types/aurelia-testing.d.ts src/aurelia-testing.ts",
35 "postbuild": "npm run build:dts",
36 "typedoc": "typedoc src/aurelia-testing.ts --json doc/api.json",
37 "posttypedoc": "node doc/cleanup.js",
38 "changelog": "standard-version -t \"\" -i doc/CHANGELOG.md --skip.commit --skip.tag",
39 "precut-release": "npm run test && npm run lint && npm run build",
40 "cut-release": "npm run changelog",
41 "postcut-release": "npm run typedoc"
42 },
43 "dependencies": {
44 "aurelia-dependency-injection": "^1.0.0",
45 "aurelia-framework": "^1.4.1",
46 "aurelia-logging": "^1.0.0",
47 "aurelia-pal": "^1.0.0",
48 "aurelia-templating": "^1.11.1"
49 },
50 "devDependencies": {
51 "@rollup/plugin-typescript": "^8.3.2",
52 "@types/jasmine": "^4.0.3",
53 "@types/estree": "0.0.51",
54 "@typescript-eslint/eslint-plugin": "^5.17.0",
55 "@typescript-eslint/parser": "^5.17.0",
56 "eslint": "^8.12.0",
57 "aurelia-bootstrapper": "^2.4.0",
58 "aurelia-pal-browser": "^1.3.0",
59 "aurelia-polyfills": "^1.2.2",
60 "aurelia-webpack-plugin": "^5.0.4",
61 "concurrently": "^7.1.0",
62 "cross-env": "^7.0.3",
63 "dts-bundle-generator": "^6.9.0",
64 "html-loader": "^3.1.0",
65 "jasmine-core": "^4.1.0",
66 "karma": "^6.3.19",
67 "karma-chrome-launcher": "^3.1.1",
68 "karma-coverage": "^2.2.0",
69 "karma-jasmine": "^5.0.0",
70 "karma-mocha-reporter": "^2.2.5",
71 "karma-sourcemap-loader": "^0.3.8",
72 "karma-webpack": "^5.0.0",
73 "rimraf": "^3.0.2",
74 "rollup": "^2.72.0",
75 "standard-version": "^9.3.2",
76 "ts-loader": "^9.3.0",
77 "tslib": "^2.4.0",
78 "typedoc": "^0.22.15",
79 "typescript": "^4.6.4",
80 "webpack": "^5.72.0",
81 "webpack-cli": "^4.9.2"
82 }
83}