-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"name": "@bhmb/bot",
"version": "7.2.0",
"description": "A bot framework for the Blockheads game that supports extensions.",
"main": "index.js",
"types": "index.d.ts",
"module": "es/index.js",
"repository": "https://github.com/Blockheads-MessageBot/MessageBot",
"author": "Bibliofile <bibliofilegit@gmail.com>",
"license": "GPL-3.0+",
"devDependencies": {
"@types/tape": "^4.2.33",
"nyc": "^14.1.1",
"tap-prettify": "^0.0.2",
"tape": "^4.11.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typedoc": "^0.15.0",
"typedoc-vortex-theme": "^0.0.2",
"typescript": "^3.6.4"
},
"dependencies": {
"blockheads-api-interface": "^0.0.1"
},
"scripts": {
"docs": "typedoc src",
"build": "tsc && tsc -p tsconfig_es.json",
"prepare": "npm run build",
"test": "tape -r ts-node/register src/*.test.ts | tap-prettify -",
"coverage": "nyc yarn test",
"report": "nyc report --reporter=html"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.test.ts"
]
}
}