-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"name": "lambda-fn",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"description": "Typescript utilities for functional programming inspired by Rust std library",
"scripts": {
"link-packages": "lerna link",
"build": "rollup --configPlugin rollup-plugin-ts -c rollup.config.ts",
"lint": "eslint --ext .ts --fix packages",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bingo347/lambda-fn.git"
},
"author": "Dmitry Belyaev",
"license": "MIT",
"bugs": {
"url": "https://github.com/bingo347/lambda-fn/issues"
},
"devDependencies": {
"@bingo347/eslint-config": "^1.6.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.25",
"eslint": "^8.9.0",
"eslint-plugin-jest": "^25.7.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"rollup": "^2.68.0",
"rollup-plugin-ts": "^2.0.5",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.12",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.5.5"
}
}