-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.08 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "latest-chrome-version",
"version": "2.0.3",
"description": "get latest chrome version",
"main": "src/latest-chrome-version.js",
"scripts": {
"test": "jest",
"prepack": "rm -rf dist; npm run build:clean; tsc -p tsconfig.prod.json",
"build:clean": "tsc --build --clean",
"postpublish": "npm run build:clean"
},
"repository": {
"type": "git",
"url": "https://github.com/0x0a0d/latest-chrome-version"
},
"keywords": [
"chrome",
"version"
],
"author": "0x0a0d",
"license": "ISC",
"files": [
"index.js",
"index.d.ts",
"src/**/**.js",
"src/**/**.d.ts",
"types",
"!types/jest**",
"dist"
],
"devDependencies": {
"@cylution/eslint-config-nodejs": "^2.0.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.3.5",
"uuid": "^9.0.0"
}
}