-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.18 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
52
{
"name": "@nodepolus/framework",
"version": "3.0.1-62",
"description": "An open-source Among Us server implementation in TypeScript",
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodePolus/framework.git"
},
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/NodePolus/framework/issues"
},
"homepage": "https://github.com/NodePolus/framework",
"dependencies": {
"commonjs": "^0.0.1",
"emittery": "^0.8.0",
"ipaddr.js": "^2.0.0",
"ts-node": "^9.1.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"ava": "^3.14.0",
"eslint": "^7.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-tsdoc": "^0.2.11",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.9.4"
},
"ava": {
"files": [
"test/**/*"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}