-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "@includedaniel/fibonacci",
"version": "1.0.16",
"description": "📦 package who finds a correspondent fibonacci term",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --ext ts --ext tsx --ext js --ext snap",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"build": "rollup -c"
},
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/includeDaniel/fibonacci"
},
"keywords": [
"npm",
"publish",
"package",
"registry"
],
"author": {
"name": "Daniel Nunes da Silva",
"email": "danielzcomputacao@gmail.com",
"url": "https://github.com/includeDaniel"
},
"bugs": {
"url": "https://github.com/includedaniel/fibonacci/issues"
},
"homepage": "https://github.com/includedaniel/fibonacci#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"esbuild": "^0.18.17",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rollup": "^3.27.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "*"
}
}