-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "acds",
"version": "1.0.0",
"description": "Animated Chatroom Dedicated Server",
"main": "src/acds.js",
"scripts": {
"build": "tsc",
"build-schemas": "node scripts/compile-schemas.js",
"test": "jest",
"test-coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AttorneyOnline/acds.git"
},
"author": "gameboyprinter",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/AttorneyOnline/acds/issues"
},
"homepage": "https://github.com/AttorneyOnline/acds#readme",
"dependencies": {
"ajv": "^6.12.0",
"async": "^3.2.0",
"fs-extra": "^8.1.0",
"json-schema-to-typescript": "^8.2.0",
"minimist": "^1.2.6",
"msgpack-lite": "^0.1.26",
"nconf": "^0.11.4",
"node-ipc": "^9.1.1",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/async": "^3.2.0",
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.1",
"@types/jest": "^24.9.1",
"@types/minimist": "^1.2.0",
"@types/msgpack-lite": "^0.1.7",
"@types/nconf": "^0.10.0",
"@types/ws": "^6.0.4",
"coveralls": "^3.0.11",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"glob": "^7.1.6",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"typescript": "^3.8.3",
"word-wrap": "^1.2.3"
},
"directories": {
"test": "test"
}
}