-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 816 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 816 Bytes
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
{
"name": "epfl-unit-api",
"version": "4.0.1",
"description": "EPFL Unit API",
"keywords": [
"EPFL",
"api",
"organisation",
"unit"
],
"author": "William Belle <william.belle@gmail.com>",
"license": "Apache-2.0",
"repository": "innovativeinnovation/epfl-unit-api",
"engines": {
"node": ">=16"
},
"main": "src/index.js",
"files": [
"src/index.js"
],
"scripts": {
"test": "eslint . && mocha",
"coverage": "nyc mocha",
"coveralls": "npm run coverage && nyc report --reporter=lcov"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"rewire": "^7.0.0"
},
"dependencies": {
"got": "^11.8.5"
}
}