-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.21 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
{
"name": "funcio",
"version": "0.0.26",
"description": "Funcio is a powerful and versatile library designed to empower developers with the rich functionalities of functional programming within the JavaScript/TypeScript ecosystem. With Funcio, you can seamlessly incorporate the principles and techniques of functional programming into your codebase, unlocking a whole new world of possibilities.",
"author": "Levi Prudêncio",
"license": "MIT",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "node ./lib/main.js",
"dev": "npm run build && npm run start",
"build": "tsc --declaration --project ./tsconfig.json",
"debugger": "tsc",
"lint": "eslint src/**/*.ts --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@vitest/coverage-c8": "^0.31.4",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^42.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
}
}