-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "constconst",
"version": "3.3.0",
"description": "For freezing and deep freezing objects which throws error on mutations. Making them actual constants. Uses proxies.",
"main": "dist/index.js",
"types": "dist/types",
"scripts": {
"lint": "eslint .",
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"docs": "typedoc src/index.ts --githubPages false",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git@github.com:TubbyStubby/constconst.git"
},
"keywords": [
"deep-freeze",
"freeze",
"proxy",
"const"
],
"author": "TubbyStubby",
"license": "MIT",
"bugs": {
"url": "https://github.com/TubbyStubby/constconst/issues"
},
"homepage": "https://github.com/TubbyStubby/constconst#readme",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist"
]
}