forked from approvers/devoirs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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": "devoirs",
"description": "Lists assignments in all classes on Microsoft 365 Education.",
"version": "0.2.0",
"main": "index.js",
"bin": "index.js",
"author": "Naoki Ikeguchi <root@siketyan.dev>",
"license": "MIT",
"homepage": "https://github.com/approvers/devoirs#readme",
"bugs": {
"url": "https://github.com/approvers/devoirs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/approvers/devoirs.git"
},
"keywords": [
"microsoft-365",
"microsoft-teams"
],
"scripts": {
"lint": "eslint src scripts",
"build": "webpack",
"start": "ts-node ./src/main.ts",
"download": "ts-node ./scripts/download.ts 756035",
"package": "ts-node ./scripts/package.ts",
"postinstall": "npm-run-all download build"
},
"devDependencies": {
"@types/node": "^14.0.4",
"@types/puppeteer-core": "^2.0.0",
"@types/unzipper": "^0.10.3",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"bufferutil": "^4.0.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"npm-run-all": "^4.1.5",
"pkg": "^4.4.8",
"prettier": "^2.0.5",
"puppeteer-core": "^3.1.0",
"ts-loader": "^7.0.4",
"ts-node": "^8.10.1",
"typescript": "^3.9.3",
"unzipper": "^0.10.11",
"utf-8-validate": "^5.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}