-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.41 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.41 KB
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
{
"name": "aurelia-logging-api",
"description": "Bundle and send Aurelia logs to an api endpoint catching window errors and api requests/responses",
"version": "1.3.6",
"repository": {
"type": "git",
"url": "https://github.com/nalch/aurelia-logging-api"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.2",
"aurelia-cli": "^1.0.2",
"aurelia-testing": "^1.0.0",
"aurelia-tools": "^2.0.0",
"autoprefixer": "^9.4.8",
"babel-eslint": "^10.0.1",
"browser-sync": "^2.26.3",
"connect-history-api-fallback": "^1.6.0",
"cssnano": "^4.1.10",
"debounce": "^1.2.0",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-cache": "^1.1.1",
"gulp-eslint": "^5.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-watch": "^5.0.1",
"jasmine-core": "^3.2.1",
"karma": "^4.1.0",
"karma-babel-preprocessor": "^8.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-sourcemap-loader": "^0.3.7",
"minimatch": "^3.0.4",
"postcss-url": "^8.0.0",
"promise-polyfill": "^8.1.0",
"regenerator-runtime": "0.13.2",
"requirejs": "^2.3.6",
"standard-changelog": "^2.0.13",
"text": "requirejs/text#latest",
"through2": "^3.0.0",
"vinyl-fs": "^3.0.3"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "au build-plugin",
"start": "au run",
"watch": "au build-plugin --watch",
"prepare": "npm run build",
"pretest": "au lint",
"preversion": "au test",
"test": "au test",
"version": "standard-changelog && git add CHANGELOG.md",
"publish": "git push && git push --tags && npm publish"
},
"engines": {
"node": ">=8.9.0"
},
"main": "dist/commonjs/index.js",
"module": "dist/native-modules/index.js",
"files": [
"dist",
"src"
],
"dependencies": {
"aurelia-fetch-client": "^1.8.2",
"aurelia-http-client": "^1.3.1",
"aurelia-logging": "^1.5.2",
"lodash": "^4.17.15",
"moment": "^2.24.0"
}
}