-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
104 lines (104 loc) · 2.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "net64plus-server",
"version": "2.4.0",
"compatVersion": "1.0",
"description": "Net64+ Dedicated Server",
"main": "dist/index.js",
"scripts": {
"start": "npm run build:dev && node ./dist/",
"build": "webpack --env=prod",
"build:dev": "webpack --env=dev",
"build:compile": "webpack --env=compile",
"compile": "npm run build:compile && node ./build",
"lint": "eslint src/ --ext ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tarnadas/net64plus-server.git"
},
"keywords": [
"net64",
"net64+",
"Super",
"Mario",
"64",
"Online",
"dedicated",
"server"
],
"author": "Mario Reder",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tarnadas/net64plus-server/issues"
},
"homepage": "https://github.com/Tarnadas/net64plus-server#readme",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/*.{d,model,mock}.{ts,tsx}",
"!**/{index,globals}.{ts,tsx}"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@clusterws/cws": "^1",
"argparse": "^1.0.10",
"axios": "^0.17.1",
"escape-html": "^1.0.3",
"farmhash": "^3",
"protobufjs": "^6.8.8",
"xss": "^1.0.6"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/travis-cli": "^8.3.5",
"@types/argparse": "^1.0.38",
"@types/jest": "^22.2.0",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^2",
"@typescript-eslint/parser": "^2",
"awesome-typescript-loader": "^3.4.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify": "^0.4.1",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-preset-env": "^1.6.0",
"coveralls": "^3.0.9",
"eslint": "^6",
"eslint-config-standard-with-typescript": "^13",
"eslint-plugin-import": "^2",
"eslint-plugin-jsdoc": "^4.1.1",
"eslint-plugin-node": "^9",
"eslint-plugin-promise": "^4",
"eslint-plugin-standard": "^4",
"husky": "^4.2.3",
"jest": "^25",
"jest-mock-axios": "2.1.11",
"nexe": "^3",
"standard": "^10.0.3",
"ts-jest": "^25",
"typescript": "3.7",
"typescript-eslint-parser": "^13",
"webpack": "^3",
"webpack-node-externals": "^1.7.2"
}
}