-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 813 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 813 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
39
{
"name": "super-cool-server",
"version": "0.0.2",
"description": "Server for super-cool-game",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/qub3x-2/super-cool-server"
},
"author": "Alessandro Astone, Andrea Franchini",
"license": "GPL-3.0-or-later",
"dependencies": {
"accurate-interval": "^1.0.9",
"dgram": "^1.0.1",
"net": "^1.0.2"
},
"devDependencies": {
"jest": "^24.9.0",
"jest-runner-eslint": "^0.7.4"
},
"jest": {
"projects": [
{
"displayName": "test"
},
{
"runner": "jest-runner-eslint",
"displayName": "lint",
"testMatch": [
"<rootDir>/src/**/*.js"
]
}
]
}
}