generated from gajaguar/package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "@gajaguar/future-value",
"version": "1.0.1",
"description": "A simple calculator for the future value of an investment.",
"private": false,
"keywords": [
"future",
"calculator",
"finance",
"investment"
],
"homepage": "https://github.com/gajaguar/future-value#readme",
"bugs": {
"url": "https://github.com/gajaguar/future-value.git/issues"
},
"license": "MIT",
"author": "G.A.JAGUAR <dev.gajaguar@gmail.com>",
"main": "dist/index.js",
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/gajaguar/future-value.git"
},
"scripts": {
"build": "tsc",
"lint:js": "eslint --ext \".js,.ts\" --ignore-path .gitignore .",
"lint": "yarn lint:js",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^27.0.5",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.0.5",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.4"
}
}