-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "how-long-to-read",
"version": "1.0.6",
"description": "Get a time estimate for how long it would take to read a web page",
"repository": {
"type": "git",
"url": "https://github.com/danielrozenberg/how-long-to-read"
},
"scripts": {
"build": "npm run clean && npm run build:esbuild && npm run build:static",
"build:esbuild": "esbuild src/*.ts --bundle --sourcemap --outdir=dist/",
"build:static": "cp -r static/* dist/",
"clean": "rm -rf dist/ && mkdir dist/",
"lint": "eslint .",
"test": "jest"
},
"author": "Daniel Rozenberg",
"license": "ISC",
"devDependencies": {
"@types/jest": "29.5.12",
"@types/webextension-polyfill": "0.10.7",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"esbuild": "0.21.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"jest-environment-jsdom": "29.7.0",
"jest-webextension-mock": "3.8.16",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.5"
}
}