-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "teacher-toolkit",
"version": "1.0.12",
"description": "Simple files, links share using Node.js / Vue.js / Ngrok",
"keywords": [
"tools",
"fileshare",
"teacher",
"share"
],
"main": "app.js",
"author": "Aurélien Loyer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/T3kstiil3/teacher-toolkit"
},
"homepage": "https://github.com/T3kstiil3/teacher-toolkit",
"scripts": {
"start": "npm run expose",
"dev": "node app/index.js 'dev'",
"expose": "node app/index.js",
"test": "mocha test",
"test:coverage": "nyc --all mocha test",
"lint": "eslint app"
},
"bin": {
"teacher-toolkit": "./app/index.js"
},
"dependencies": {
"body-parser": "1.18.2",
"cors": "2.8.4",
"express": "4.16.2",
"ngrok": "3.0.1",
"opn": "5.3.0",
"readline-sync": "1.4.7",
"socket.io": "2.1.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.5.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^6.2.0"
}
}