This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
forked from seanblonien/deep-enum-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.25 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@lossbook/deep-enum-core",
"version": "0.0.3",
"description": "Make deeply nested enums out of any constant object with a full type-safe interface.",
"author": "Sean Blonien",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"sideEffects": false,
"files": [
"dist",
"src"
],
"homepage": "https://github.com/seanblonien/deep-enum-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/seanblonien/deep-enum-core.git"
},
"bugs": {
"url": "https://github.com/seanblonien/deep-enum-core/issues"
},
"keywords": [
"deep",
"enum",
"enumeration",
"path",
"constant",
"object",
"typescript",
"type-safe",
"nested",
"json",
"deeply",
"dot",
"notation",
"immutable"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "run-s clean test:ci build",
"prepare": "ts-patch install -s",
"clean": "rimraf dist out",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:ci": "cross-env CI=true run-p typecheck lint test",
"test:w": "jest --watch",
"lint": "eslint --cache --fix --ext .cjs,.ts .",
"dev": "npm run build -- -w",
"benchmark": "tsc -p tsconfig.benchmark.json && node --experimental-specifier-resolution=node out/scripts/benchmark",
"size": "tsc -p tsconfig.size.json && node out/package-size"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts-esm",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+(test).ts"
],
"collectCoverage": true,
"coverageReporters": [
"text",
"cobertura"
]
},
"devDependencies": {
"@types/get-value": "^3.0.3",
"@types/inquirer": "^9.0.1",
"@types/jest": "^28.1.8",
"@types/jsdom": "^20.0.0",
"@types/lodash": "^4.14.184",
"@types/object-path": "^0.11.1",
"@types/set-value": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"chalk": "^5.0.1",
"chalk-template": "^0.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.15.0",
"eslint-plugin-sort-export-all": "^1.2.2",
"eslint-plugin-unused-imports": "^2.0.0",
"get-value": "^3.0.1",
"globby": "^13.1.2",
"inquirer": "^9.1.1",
"jest": "^28.1.3",
"jsdom": "^20.0.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"object-path": "^0.11.8",
"object-path-immutable": "^4.1.2",
"open-cli": "^7.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"set-value": "^4.1.0",
"ts-jest": "^28.0.8",
"ts-patch": "^2.0.2",
"tsc-progress": "^1.0.4",
"typescript": "^4.8.2",
"typescript-transform-paths": "^3.3.1"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
}
}