This repository was archived by the owner on Dec 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.36 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.36 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
{
"name": "timekeeper",
"version": "1.2.1",
"description": "A timekeeper",
"main": "src/index.js",
"scripts": {
"lint": "xo",
"stylelint": "stylelint src/**/**/*.css src/**/*.css",
"test": "ava",
"coverage": "nyc ava -t",
"dev": "poi --serve",
"check-duplicate-code": "jsinspect -t 20 src",
"build": "poi --production",
"start": "node ./server.js"
},
"author": "Alex Gustafsson",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.7.3",
"ava": "^2.4.0",
"jsinspect": "^0.12.7",
"nyc": "^15.0.0",
"poi": "^12.7.5",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^19.0.0",
"xo": "^0.25.3"
},
"dependencies": {
"@vue/composition-api": "^0.3.4",
"humanize-duration": "^3.21.0",
"reset-css": "^5.0.1",
"vue": "^2.6.11",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.11",
"xlsx-populate": "^1.20.1"
},
"xo": {
"space": 2,
"esnext": true,
"ignores": [
"**/*.vue"
],
"rules": {
"curly": [
"error",
"multi-or-nest",
"consistent"
],
"no-use-before-define": [
"error",
{
"classes": false
}
],
"unicorn/catch-error-name": [
"error",
{
"name": "error"
}
],
"dot-notation": [
"off"
],
"quote-props": [
"off"
],
"object-curly-spacing": [
"off"
],
"no-new": [
"off"
],
"import/no-unassigned-import": [
"warn",
{
"allow": [
"**/*.css"
]
}
],
"padding-line-between-statements": [
"off"
]
}
},
"ava": {
"files": [
"test/*.js"
],
"require": [
"esm"
],
"concurrency": 5,
"failFast": false,
"verbose": true,
"compileEnhancements": false
},
"poi": {
"entry": "src/index.js",
"output": {
"html": {
"template": "src/index.html"
}
}
},
"browserslist": "cover 90% in SV and > 0.5% and last 2 versions and not op_mini all and not Opera > 0",
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"color-hex-case": "upper",
"declaration-empty-line-before": null,
"comment-empty-line-before": null,
"declaration-bang-space-before": null
}
}
}