-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 753 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 753 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
{
"name": "aim-server",
"private": true,
"version": "0.0.1",
"description": "An AOL Instant Messenger Server. Implements a subset of the Oscar Protocol",
"main": "index.js",
"scripts": {
"start": "bin/aimserver",
"build": "tsc",
"watch": "tsc --watch",
"format:check": "prettier --list-different '**/*.{js,ts,md,json}'",
"format": "prettier --write '**/*.{js,ts,md,json}'",
"test": "tape -r ts-node/register 'src/**/__tests__/*.test.ts' | faucet"
},
"author": "Andrew Levine",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.11",
"@types/tape": "^4.13.0",
"faucet": "^0.0.1",
"prettier": "^2.2.1",
"tape": "^5.1.0",
"ts-node": "^8.10.2",
"typescript": "^4.1.2"
}
}