-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "@includedaniel/temperature-conversor",
"version": "1.0.1",
"description": "📦 package who make temperature conversion",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/includeDaniel/temperature-conversor.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/includeDaniel/temperature-conversor/issues"
},
"homepage": "https://github.com/includeDaniel/temperature-conversor#readme",
"dependencies": {
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"esbuild": "^0.18.17",
"eslint": "^8.46.0",
"jest": "^29.6.2",
"prettier": "3.0.0",
"rollup": "^3.27.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.1.1"
}
}