generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
127 lines (127 loc) · 3.59 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
{
"name": "bodylight-editor",
"description": "Markdown editor enhanced with bodylight components with live preview",
"version": "2.2.6",
"repository": {
"type": "git",
"url": "https://github.com/creative-connections/Bodylight-Editor/"
},
"license": "MIT",
"dependencies": {
"@octokit/request": "^5.4.14",
"ace-builds": "^1.4.12",
"aurelia-animator-css": "^1.0.4",
"aurelia-bodylight-plugin": "^2.3.3",
"aurelia-bootstrapper": "^2.3.3",
"dygraphs": "^2.2.1",
"file-saver": "^2.0.5",
"jquery": "^3.5.1",
"js-sha1": "^0.6.0",
"jszip": "^3.7.1",
"katex": "^0.12.0",
"localforage": "^1.9.0",
"w3-css": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@babel/register": "^7.12.13",
"app-settings-loader": "^1.0.3",
"async": "^3.2.3",
"aurelia-cli": "^2.0.3",
"aurelia-loader-nodejs": "^1.1.0",
"aurelia-pal-nodejs": "^2.0.0",
"aurelia-templating": "^1.11.1",
"aurelia-testing": "^1.0.0",
"aurelia-tools": "^2.0.0",
"aurelia-webpack-plugin": "^4.0.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"bodylight-components": "^2.3.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"createjs": "^1.0.1",
"css-loader": "^3.4.2",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^4.0.0",
"expose-loader": "^0.7.5",
"file-loader": "^5.1.0",
"firebase": "^10.8.0",
"glob-parent": "^5.1.2",
"gulp": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jest": "^27.3.1",
"jest-cli": "^27.3.1",
"jest-transform-stub": "^2.0.0",
"json-loader": "^0.5.7",
"latest-createjs": "^1.0.24",
"markdown-it-attrs": "^4.1.6",
"mini-css-extract-plugin": "^0.11.2",
"minimatch": "^3.0.4",
"promise-polyfill": "^8.1.3",
"regenerator-runtime": "^0.13.3",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^4.2.3",
"through2": "^3.0.1",
"tree-kill": "^1.2.1",
"ts-loader": "^8.0.17",
"url-loader": "^3.0.0",
"vinyl-fs": "^3.0.3",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.8.1"
},
"scripts": {
"build": "webpack --env.production --extractCss",
"start": "webpack-dev-server",
"build:dev": "webpack",
"analyze": "webpack --env.production --analyze",
"test": "au test"
},
"engines": {
"node": ">=15.0.0"
},
"jest": {
"moduleNameMapper": {
"^aurelia-binding$": "<rootDir>/node_modules/aurelia-binding"
},
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"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",
"^.+\\.js$": "babel-jest"
},
"testRegex": "\\.spec\\.js$",
"setupFiles": [
"<rootDir>/test/jest-pretest.js"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!**/*.spec.js",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
}
}