-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "sitting-duck",
"version": "2.6.1",
"description": "A legacy minifier combination that can handles ES6 import/export style and script styles without breaking your codebase.",
"repository": {
"url": "https://github.com/puka-tchou/sitting-duck"
},
"homepage": "https://github.com/puka-tchou/sitting-duck",
"main": "build/index.js",
"files": [
"index.ts",
"tsconfig.json",
"build/",
"_types/index.d.ts"
],
"types": "_types/index.d.ts",
"scripts": {
"lint": "eslint --fix",
"format": "prettier --write .",
"test": "jest",
"test:build": "npm run build && node ./build/manual.js --prod",
"test:dev": "npm run build && node ./build/manual.js --dev",
"ci-install": "GIT_SSH_COMMAND=ssh npm ci",
"build": "tsc",
"prepublishOnly": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@swc/core": "1.7.42",
"esbuild": "0.24.0",
"fast-glob": "3.3.2",
"watchpack": "2.4.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.15.0",
"@jest/globals": "^29.7.0",
"@turf/distance": "^7.1.0",
"@turf/helpers": "^7.1.0",
"@turf/turf": "^7.1.0",
"@types/eslint__js": "^8.42.3",
"@types/geojson": "^7946.0.14",
"@types/node": "^22.9.3",
"@types/watchpack": "^2.4.4",
"babel-jest": "^29.7.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.0.0-alpha.30"
}
}