-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.92 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
{
"name": "aurelia-devextreme-bridge",
"description": "Building bridge between Aurelia and DevExtreme based on metadata used for Angular",
"version": "21.1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/stenet/au-dx-builder"
},
"license": "ISC",
"author": {
"name": "Stefan Heim",
"email": "stefan.heim@hotmail.com"
},
"peerDependencies": {
"devextreme": "21.1.4"
},
"devDependencies": {
"@types/gulp": "^4.0.6",
"@types/jest": "^24.0.9",
"@types/node": "^10.14.4",
"@types/rimraf": "^2.0.2",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.2",
"aurelia-cli": "^1.0.0-beta.15",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-pal-nodejs": "^1.2.0",
"aurelia-testing": "^1.0.0",
"aurelia-tools": "^2.0.0",
"browser-sync": "^2.26.3",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^3.0.0",
"debounce": "^1.2.0",
"devextreme": "21.1.4",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-less": "^4.0.1",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^1.4.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.0",
"gulp-watch": "^5.0.1",
"jest": "^24.1.0",
"jest-cli": "^24.1.0",
"jest-transform-stub": "^2.0.0",
"merge2": "^1.2.3",
"minimatch": "^3.0.4",
"requirejs": "^2.3.6",
"rimraf": "^2.6.3",
"text": "requirejs/text#latest",
"through2": "^3.0.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tslint": "^5.13.0",
"typescript": "^3.1.2",
"vinyl-fs": "^3.0.3"
},
"scripts": {
"build": "au build-plugin",
"start": "au run",
"prepare": "npm run build",
"pretest": "au lint",
"test": "au test",
"build-dx": "au build-dx"
},
"engines": {
"node": ">=8.9.0"
},
"main": "dist/commonjs/index.js",
"types": "dist/commonjs/index.d.ts",
"module": "dist/native-modules/index.js",
"files": [
"dist"
],
"jest": {
"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"
},
"testRegex": "\\.spec\\.(ts|js)$",
"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",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
}
}