forked from ziimakc/deep-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "@tanzanite/deep-lock",
"version": "1.1.2",
"description": "Deep freeze, seal or preventExtensions typescript helper function",
"main": "dist/src/deepLock.js",
"types": "dist/src/deepLock.d.ts",
"type": "module",
"scripts": {
"build": "yarn rimraf dist && yarn tsc",
"test": "node ./dist/test/deepLock.test.js --test",
"prepare": "yarn build",
"prepublishOnly": "yarn build && yarn test"
},
"author": "Maksim Zaborovskiy",
"license": "MIT",
"repository": "https://github.com/TanzaniteBot/deep-lock.git",
"bugs": "https://github.com/TanzaniteBot/deep-lock/issues",
"homepage": "https://github.com/TanzaniteBot/deep-lock#readme",
"keywords": [
"deep-lock",
"deep-lock-typescript",
"deep-freeze",
"deep-freeze-typescript",
"deep-seal",
"deep-seal-typescript",
"deep-preventExtensions",
"deep-preventExtensions-typescript"
],
"devDependencies": {
"@types/node": "^18.7.18",
"rimraf": "^3.0.2",
"typescript": "^4.8.3"
},
"files": [
"/dist/src",
"/src"
],
"packageManager": "yarn@3.2.3"
}