-
Notifications
You must be signed in to change notification settings - Fork 461
/
package.json
39 lines (39 loc) · 974 Bytes
/
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
{
"name": "emi-calculator",
"version": "1.0.0",
"description": "A simple EMI calculator web application",
"main": "server.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "jest --coverage",
"test-win": "jest.cmd --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/improwised/emi-calculator.git"
},
"keywords": [
"workshop",
"demo"
],
"author": "Rakshit Menpara",
"license": "MIT",
"bugs": {
"url": "https://github.com/improwised/emi-calculator/issues"
},
"homepage": "https://github.com/improwised/emi-calculator#readme",
"devDependencies": {
"eslint": "^8.37.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.5.0",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint"
]
}