-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.7 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.7 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
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
{
"name": "sharplab",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "ts-node-script ./scripts.ts build",
"lint": "ts-node-script ./scripts.ts ts-lint",
"test": "jest --maxWorkers=1",
"test:skip-render": "cross-env TEST_SKIP_RENDER=true jest --testPathIgnorePatterns rendering --maxWorkers=1",
"start": "ts-node-script ./scripts.ts start --watch",
"build-ci": "ts-node-script ./scripts.ts build-ci"
},
"jest": {
"maxConcurrency": 10,
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tests/tsconfig.json"
}
},
"transform": {
"\\.ts$": "ts-jest",
"(node_modules[/\\\\]mirrorsharp|mirrorsharp.+dist)": "./tests/transform-esm-in-node-modules.cjs"
},
"transformIgnorePatterns": [
"/node_modules/(?!mirrorsharp/)"
],
"setupFiles": [
"<rootDir>/ts/polyfills/index.ts"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.ts",
"<rootDir>/tests/rendering/setup.ts"
],
"globalTeardown": "<rootDir>/tests/rendering/docker/global-teardown.ts",
"testMatch": [
"<rootDir>/tests/**/*.tests.ts"
],
"moduleNameMapper": {
"^vue$": "<rootDir>/node_modules/vue/dist/vue.js"
}
},
"devDependencies": {
"@babel/preset-env": "7.9.0",
"@rollup/plugin-node-resolve": "7.1.1",
"@rollup/plugin-typescript": "8.2.1",
"@types/adm-zip": "0.4.33",
"@types/applicationinsights-js": "1.0.9",
"@types/autoprefixer": "9.7.2",
"@types/codemirror": "0.0.78",
"@types/css-font-loading-module": "0.0.4",
"@types/d3": "5.7.2",
"@types/d3-force": "1.2.1",
"@types/dateformat": "3.0.1",
"@types/html-minifier": "3.5.3",
"@types/jest": "25.2.1",
"@types/jest-image-snapshot": "2.8.0",
"@types/less": "3.0.1",
"@types/lz-string": "1.3.33",
"@types/marked": "0.6.5",
"@types/node-fetch": "2.5.7",
"@types/puppeteer": "1.20.2",
"@types/sharp": "0.25.0",
"@types/throttle-debounce": "2.1.0",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"@vue/test-utils": "1.0.0-beta.29",
"adm-zip": "0.5.1",
"autoprefixer": "9.7.6",
"babel-jest": "26.0.1",
"cross-env": "7.0.3",
"eslint": "6.8.0",
"eslint-plugin-import": "2.18.2",
"execa": "5.0.0",
"fs-jetpack": "2.1.0",
"html-minifier": "3.5.19",
"http-server": "0.12.3",
"jest": "26.0.1",
"jest-image-snapshot": "2.9.0",
"jest-mock-proxy": "3.0.0",
"less": "3.8.1",
"node-fetch": "2.6.1",
"oldowan": "1.0.0",
"postcss": "7.0.2",
"postcss-csso": "3.0.0",
"puppeteer": "2.1.1",
"regex-combiner": "github:am11/regex-combiner#1fd650aa8dcec8d71e0101558bc181eed8b9ed08",
"rollup": "2.14.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-terser": "5.3.0",
"sharp": "0.27.2",
"ts-jest": "25.3.1",
"ts-node": "8.10.1",
"typescript": "4.3.2",
"vue-template-compiler": "2.5.16"
},
"dependencies": {
"base64-arraybuffer": "1.0.1",
"clean-css": "4.2.1",
"codemirror": "5.61.1",
"codemirror-addon-infotip": "1.0.0",
"codemirror-addon-lint-fix": "1.0.1",
"d3": "4.13.0",
"d3-force": "2.0.0",
"dateformat": "1.0.12",
"lz-string": "1.4.4",
"marked": "0.7.0",
"mirrorsharp": "file:../%23external/mirrorsharp/WebAssets/dist",
"mirrorsharp-codemirror-6-preview": "0.0.11",
"normalize.css": "8.0.1",
"portal-vue": "2.1.7",
"resize-observer-polyfill": "1.5.1",
"throttle-debounce": "1.0.1",
"vue": "2.6.10"
}
}