This repository was archived by the owner on Feb 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.23 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
{
"name": "algorithm-animator",
"version": "3.0.8",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --dest gh-pages",
"lint": "vue-cli-service lint",
"test": "jest"
},
"dependencies": {
"core-js": "^2.6.5",
"js-corelib": "^1.1.3",
"paper-vueify": "^1.1.11",
"vue": "^2.6.10",
"vuetify": "^1.5.14"
},
"devDependencies": {
"@types/jest": "^24.0.12",
"@vue/cli-plugin-babel": "^3.6.0",
"@vue/cli-plugin-typescript": "^3.6.0",
"@vue/cli-service": "^3.6.0",
"codecov": "^3.4.0",
"jest": "^24.8.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.3",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.1.0",
"vue-template-compiler": "^2.5.21"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 60,
"lines": 50,
"satements": 50
}
}
}
}