-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.69 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.69 KB
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
60
61
62
63
64
65
{
"name": "@shelf/fast-normalize-spaces",
"version": "2.1.0",
"description": "A faster (by 16-70%) implementation of \"normalize-space-x\" package that uses at least 3x less RAM",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "vlad@shelf.io",
"url": "https://shelf.io"
},
"sideEffects": false,
"type": "module",
"exports": "./lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"benchmark": "yarn benchmark:memory && yarn benchmark:speed",
"benchmark:memory": "yarn build && node benchmark/memory/test.js",
"benchmark:speed": "yarn build && node benchmark/speed/test.js",
"build": "rm -rf lib/ && tsc",
"coverage": "yarn test --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint .",
"prepack": "yarn build",
"test": "TZ=UTC jest src",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,md,yml}": [
"prettier --write"
],
"*.{js,ts,json}": [
"eslint --fix"
]
},
"prettier": "@shelf/prettier-config",
"devDependencies": {
"@shelf/eslint-config": "5.2.3",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.1.0",
"@swc/core": "1.15.18",
"@swc/jest": "0.2.39",
"@types/jest": "30.0.0",
"@types/node": "22.18.6",
"benny": "3.7.1",
"eslint": "9.39.4",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "16.3.3",
"normalize-space-x": "4.1.2",
"prettier": "3.8.1",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"access": "public"
}
}