-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
69
{
"name": "deep-freeze-es6",
"version": "4.0.0",
"description": "deep freeze, works with Map and Set",
"keywords": [
"freeze",
"deep-freeze",
"set",
"map"
],
"author": "Christophe Hurpeau <[email protected]> (http://christophe.hurpeau.com/)",
"license": "ISC",
"repository": "https://github.com/christophehurpeau/deep-freeze-es6.git",
"homepage": "https://github.com/christophehurpeau/deep-freeze-es6#readme",
"bugs": {
"url": "https://github.com/christophehurpeau/deep-freeze-es6/issues"
},
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.9.0"
},
"sideEffects": false,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"scripts": {
"build": "yarn run build:definitions",
"build:definitions": "tsc --lib esnext --noEmit --skipLibCheck ./lib/index.d.ts",
"checks": "node scripts/check-package.js",
"lint": "yarn run lint:prettier && yarn run lint:eslint",
"lint:eslint": "eslint --quiet .",
"lint:prettier": "pob-root-prettier --check .",
"lint:prettier:fix": "pob-root-prettier --write .",
"postinstallDev": "pob-root-postinstall",
"test": "node --test lib/**/*.test.js",
"test-typings": "tsc -p typings/tsconfig.json",
"test:coverage": "npx c8 --all --src ./lib node --test lib/**/*.test.js",
"test:coverage:json": "npx c8 --reporter=json --all --src ./lib node --test lib/**/*.test.js",
"test:coverage:lcov": "npx c8 --reporter=lcov --all --src ./lib node --test lib/**/*.test.js",
"test:watch": "node --test lib/**/*.test.js"
},
"commitlint": {
"extends": [
"@pob/commitlint-config"
]
},
"pob": {
"typescript": "check-only"
},
"prettier": "@pob/root/prettier-config",
"devDependencies": {
"@pob/commitlint-config": "8.0.1",
"@pob/eslint-config": "59.2.0",
"@pob/root": "15.0.0",
"check-package-dependencies": "9.0.0",
"eslint": "9.17.0",
"typescript": "5.7.2"
}
}