-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.09 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": "deep-freeze-es6",
"version": "5.0.0",
"description": "deep freeze, works with Map and Set",
"keywords": [
"deep-freeze",
"freeze",
"map",
"set"
],
"homepage": "https://github.com/christophehurpeau/deep-freeze-es6#readme",
"bugs": {
"url": "https://github.com/christophehurpeau/deep-freeze-es6/issues"
},
"license": "ISC",
"author": "Christophe Hurpeau <christophe@hurpeau.com> (http://christophe.hurpeau.com/)",
"repository": "https://github.com/christophehurpeau/deep-freeze-es6.git",
"files": [
"lib"
],
"type": "module",
"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"
},
"scripts": {
"build": "pnpm run build:definitions",
"build:definitions": "tsc -p tsconfig.json",
"format": "oxfmt",
"format:check": "oxfmt --check .",
"lint": "pnpm run format && pnpm run lint:eslint",
"lint:eslint": "eslint --quiet .",
"prepare": "pob-root-postinstall",
"test": "TZ=UTC node --test 'lib/**/*.test.js'",
"test-typings": "tsc -p typings/tsconfig.json",
"test:coverage": "TZ=UTC node --test --experimental-test-coverage --test-coverage-include=\"lib/**/*.ts\" 'lib/**/*.test.js'",
"test:coverage:generate": "mkdir -p docs && TZ=UTC node --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=docs/coverage.lcov --test-coverage-include=\"lib/**/*.ts\" 'lib/**/*.test.js'",
"test:watch": "TZ=UTC node --test 'lib/**/*.test.js'",
"tsc": "tsc && tsc -p tsconfig.tools.json"
},
"devDependencies": {
"@pob/eslint-config": "67.1.1",
"@pob/root": "27.2.1",
"@typescript/native": "npm:typescript@7.0.2",
"eslint": "10.8.1",
"typescript": "npm:@typescript/typescript6@6.0.2"
},
"commitlint": {
"extends": [
"@pob/root/commitlint-config"
]
},
"engines": {
"node": ">=22.18.0"
},
"pob": {
"typescript": "check-only"
}
}