-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 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
{
"name": "@devoxa/flocky",
"description": "A utility library with clarity and efficiency at the core. 0 dependencies.",
"version": "2.2.0",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"license": "MIT",
"repository": {
"url": "https://github.com/devoxa/flocky"
},
"scripts": {
"test": "jest",
"benchmark": "sh benchmark.sh",
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
"format:check": "prettier --ignore-path='.gitignore' --check .",
"lint": "eslint --ignore-path='.gitignore' '{src,tests}/**/*.ts'",
"build": "yarn build:esbuild && yarn build:docs",
"build:esbuild": "rm -rf dist/ && node esbuild.js && tsc --emitDeclarationOnly",
"build:docs": "ts-node -O '{\"module\":\"commonjs\"}' src/generateDocs.ts",
"preversion": "yarn build"
},
"eslintConfig": {
"extends": "@devoxa"
},
"prettier": "@devoxa/prettier-config",
"devDependencies": {
"@devoxa/eslint-config": "3.0.11",
"@devoxa/prettier-config": "2.0.3",
"@swc/core": "1.9.3",
"@swc/jest": "0.2.37",
"@types/benchmark": "2.1.5",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/node": "20.9.5",
"@types/pako": "2.0.3",
"benchmark": "2.1.4",
"esbuild": "0.23.1",
"eslint": "8.57.1",
"fast-glob": "3.3.2",
"fast-memoize": "2.5.2",
"filesize": "10.1.6",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lodash": "4.17.21",
"pako": "2.1.0",
"prettier": "3.4.1",
"terser": "5.36.0",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.9.0"
}
}