-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "ihna_calendarservice",
"version": "1.0.2",
"description": "Allows you to search the calendar by day/week or even make specific searches in the calendar (particular courses, teachers etc...).",
"main": "src/server.js",
"scripts": {
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"test:dev": "jest --detectOpenHandles --watchAll",
"test:cov": "jest --coverage",
"test": "jest --force-exit --detectOpenHandles",
"serve": "NODE_ENV=developpement nodemon src/server.js",
"start": "NODE_ENV=production node src/server.js",
"preversion": "npm run lint:fix && npm test",
"postversion": "git push --follow-tags"
},
"keywords": [
"IHNA",
"service",
"calendar"
],
"author": "Kritune",
"license": "ISC",
"dependencies": {
"@types/jest": "^26.0.20",
"eslint-plugin-jest": "^24.1.3",
"express": "^4.17.1",
"i": "^0.3.6"
},
"devDependencies": {
"eslint": "^7.17.0",
"jest": "^26.6.3",
"node-mocks-http": "^1.9.0",
"nodemon": "^2.0.7",
"supertest": "^6.0.1"
}
}