-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 876 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 876 Bytes
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
{
"name": "eta",
"version": "1.0.0",
"description": "Estimates remaining waiting time, hosted at https://entorb.net/eta/",
"author": "Torben Menke",
"license": "gpl-3.0",
"repository": {
"type": "git",
"url": "https://github.com/entorb/eta/"
},
"main": "src/main.js",
"directories": {
"lib": "src/lib"
},
"scripts": {
"format": "npx prettier --check --write src/*.js *.json",
"lint": "npx eslint --fix src/*.js",
"test": "jest",
"testc": "jest --coverage"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^2.8.4"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"src/*.js",
"!src/lib/*",
"!src/main.js"
]
}
}