-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 977 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 977 Bytes
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
{
"name": "fancy-collections",
"version": "1.1.3",
"description": "A small collection of perfectly typed handy tools for everyday work with collections",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npx rimraf dist && tsc -p ./tsconfig.build.json",
"tests:typing": "tsc -p tsconfig.tests.json",
"tests:functionality": "jest"
},
"author": "avfirsov",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/lodash.get": "^4.4.9",
"@types/lodash.set": "^4.3.9",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"prettier-config-standard": "^7.0.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-toolbelt": "^9.6.0",
"type-fest": "^4.8.3",
"typescript": "^5.3.3"
},
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
}
}