-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
168 lines (168 loc) · 5.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "@logofx/aurelia-mvvm-plugin",
"description": "The set of helpful infrastructures to build MVVM apps with Aurelia framework.",
"version": "0.2.2",
"keywords": [
"aurelia",
"plugin",
"logofx",
"mvvm",
"typescript",
"glyad",
"kossoglyad",
"DI",
"IoC",
"Dependency Injection",
"Inversion of Control",
"SPA",
"aurelia plugin"
],
"homepage": "https://github.com/LogoFX/aurelia-mvvm-plugin",
"bugs": {
"url": "https://github.com/LogoFX/aurelia-mvvm-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LogoFX/aurelia-mvvm-plugin.git"
},
"license": "MIT",
"author": "David Kossoglyad ([email protected])",
"devDependencies": {
"@convergencelabs/typedoc-plugin-custom-modules": "^0.4.0",
"@convergencelabs/typedoc-theme": "^1.3.0",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.5",
"@types/rimraf": "^3.0.1",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.3",
"aurelia-cli": "^2.0.3",
"aurelia-dialog": "^2.0.0",
"aurelia-loader-nodejs": "^1.1.0",
"aurelia-pal-nodejs": "^2.0.0",
"aurelia-testing": "^1.0.0",
"aurelia-validation": "^2.0.0-rc1",
"browser-sync": "^2.27.4",
"concurrently": "^5.3.0",
"connect-history-api-fallback": "^1.6.0",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "^2.1.1",
"copyfiles": "^2.2.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"debounce": "^1.2.1",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-watch": "^5.0.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-cucumber": "^2.0.13",
"jest-transform-stub": "^2.0.0",
"minimatch": "^3.0.4",
"promise-polyfill": "^8.1.3",
"requirejs": "^2.3.6",
"rimraf": "^3.0.2",
"standard-version": "^8.0.2",
"text": "requirejs/text#latest",
"through2": "^3.0.2",
"ts-expect": "^1.1.0",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"tslint-microsoft-contrib": "^6.2.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.10",
"vinyl-fs": "^3.0.3"
},
"scripts": {
"prebuild": "cross-env rimraf dist",
"build": "au build-plugin",
"jest": "jest --verbose --color",
"start": "au run",
"watch": "au build-plugin --watch",
"lint": "tslint --project tsconfig.json --config tslint.json",
"pretest": "tslint --project tsconfig.json --config tslint.json",
"preversion": "au test",
"test": "au test",
"test-ci": "cross-env jest --coverage",
"html-doc": "cross-env rimraf doc/html-doc && typedoc --mode modules --hideGenerator --ignoreCompilerErrors --excludePrivate --excludeExternals --exclude '**/*+(index|.spec|.e2e).ts' --excludeNotExported --includeVersion --out doc/html-doc --theme node_modules/@convergencelabs/typedoc-theme/bin/default src",
"predoc": "cross-env rimraf doc/api.json && rimraf dist/doc-temp && tsc --project tsconfig.json --outFile dist/doc-temp/aurelia-mvvm.js && node doc/shape-defs && copyfiles tsconfig.json dist/doc-temp",
"doc": "cross-env typedoc --json doc/api.json --excludeExternals --includeDeclarations --mode modules --target ES6 --name aurelia-mvvm-docs dist/doc-temp/",
"postdoc": "cross-env node doc/shape-doc && rimraf dist/doc-temp",
"changelog": "cross-env conventional-changelog -p angular -i doc/CHANGELOG.md -s",
"pre-cut-release": "npm run test && npm run build && npm run doc && npm run html-doc",
"cut-release": "standard-version -t \"\" -i doc/CHANGELOG.md"
},
"engines": {
"node": ">=8.9.0"
},
"main": "dist/commonjs/index.js",
"module": "dist/native-modules/index.js",
"private": false,
"files": [
"dist",
"src"
],
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"verbose": true,
"moduleNameMapper": {
"^aurelia-binding$": "<rootDir>/node_modules/aurelia-binding",
"^.+\\.css$": "<rootDir>/test/mock-css"
},
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(css|less|sass|scss|styl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "jest-transform-stub",
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/*.steps.ts"
],
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
},
"dependencies": {
"aurelia-dialog": "^2.0.0",
"aurelia-validation": "^2.0.0-rc1"
},
"peerDependencies": {
"aurelia-dialog": "^2.0.0",
"aurelia-validation": "^2.0.0-rc1"
}
}