-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "@parkour-ops/freeze-thaw",
"version": "1.0.0",
"description": "Provides functions to make mutable objects immutable ('freeze'), and immutable objects mutable ('thaw').",
"scripts": {
"format": "prettier -c .",
"build": "rm -rf ./lib && tsc",
"build-test": "npm run build && mocha",
"preversion": "npm run format && npm run build-test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TejAtParkourOps/freeze-thaw.git"
},
"keywords": [
"object",
"immutable",
"immutability",
"persistent",
"mutable",
"freeze",
"frozen",
"thaw",
"typescript",
"deep",
"readonly",
"clone",
"writeable",
"sharing"
],
"author": {
"name": "Tej Birring",
"email": "tej@parkourops.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TejAtParkourOps/freeze-thaw.git/issues"
},
"homepage": "https://github.com/TejAtParkourOps/freeze-thaw.git#readme",
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/lodash.clonedeep": "^4.5.7",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"prettier": "^3.0.2",
"typescript": "^5.2.2"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
},
"files": [
"./lib"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
}