-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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": "@kth/canvas-api",
"version": "4.2.6",
"description": " Functions for communicating with Canvas LMS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "eslint && prettier --write .",
"test": "npm run build && npm run test:lint && jest",
"test:lint": "eslint src && prettier --check .",
"build": "rm -rf dist && tsc",
"prepublish": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kth/canvas-api"
},
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"license": "MIT",
"dependencies": {
"form-data-encoder": "1.6.0",
"formdata-node": "^3.7.0",
"got": "^11.8.2",
"query-string": "^6.14.1"
},
"devDependencies": {
"@jest/globals": "^27.0.6",
"@kth/eslint-config-kth": "^3.0.12",
"@types/create-test-server": "^3.0.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"dotenv": "^8.2.0",
"eslint": "^8.31.0",
"fast-csv": "^4.3.6",
"jest": "^27.0.6",
"msw": "^0.49.1",
"ora": "^5.0.0",
"prettier": "^2.8.2",
"tempy": "^0.3.0",
"ts-jest": "^27.0.5",
"typescript": "^4.9.4"
}
}