-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.96 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
70
71
72
{
"alias": "auto-immutable.js",
"author": {
"email": "stephen.isienyi@webkrafting.com",
"name": "Stephen Isienyi"
},
"bugs": {
"url": "https://github.com/webKrafters/auto-immutable.js/issues"
},
"contributors": [
"steveswork <stephen.isienyi@gmail.com> (https://github.com/steveswork)"
],
"dependencies": {
"@webkrafters/clone-total": "^1.0.1",
"@webkrafters/get-property": "^1.1.2"
},
"description": "Auto Immutable - self enforcing immutable data structure",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.20.5",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^20.13.0",
"babel-loader": "^8.2.5",
"jest": "^29.7.0",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.isplainobject": "^4.0.6",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"files": [
"dist",
"logo.svg"
],
"homepage": "https://auto-immutable.js.org",
"keywords": [
"auto-immutable",
"immutable",
"readonly"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@webkrafters/auto-immutable",
"peerDependencies": {
"lodash.isempty": ">= 0.1.0",
"lodash.isequal": ">= 0.1.0",
"lodash.isplainobject": ">= 0.8.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webKrafters/auto-immutable.js.git"
},
"scripts": {
"build": "rm -rf dist && tsc && babel dist -d dist",
"postbuild": "node post-build.js",
"test": "jest --coverage --updateSnapshot",
"test:clean": "jest --clearCache",
"test:core": "jest --updateSnapshot",
"test:watch": "jest --updateSnapshot --watchAll"
},
"types": "dist/index.d.ts",
"version": "1.0.2"
}