-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.5 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": "freeze-mutate",
"version": "1.3.0",
"description": "Utility library for immutable objects management",
"keywords": [
"immutable",
"mutate",
"freeze",
"deepCopy",
"deepFreeze",
"pojo",
"produce",
"immer/produce",
"DTO",
"javascript",
"typescript"
],
"author": "eram@weblegions.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/eram/freeze-mutate/issues"
},
"homepage": "https://github.com/eram/freeze-mutate#readme",
"files": [
"index*.[jt]s",
"dist/src/mutate.js",
"dist/src/mutate.d.ts"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc --pretty --declaration",
"test": "jest --coverage --no-cache",
"test:nocover": "jest",
"dev": "jest --watch",
"clean": "rimraf dist coverage",
"pretest": "npm run clean && npm run lint && npm run build",
"lint": "eslint --color --fix src/**/*.ts && echo Lint complete."
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.2.3"
},
"dependencies": {}
}