forked from MultiverseLearningProducts/scooter-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 965 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
{
"name": "scooter-project-solution",
"version": "1.0.0",
"description": "An Electric Scooter Hire app system, created using UML, OOP, JS Classes and TDD",
"main": "Application.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --verbose --collect-coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MultiverseLearningProducts/scooter-project-solution.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MultiverseLearningProducts/scooter-project-solution/issues"
},
"homepage": "https://github.com/MultiverseLearningProducts/scooter-project-solution#readme",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0"
}
}