-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "discord.js-minesweeper",
"version": "1.1.0",
"description": "Generate Minesweeper mine fields using Discord's spoiler tags.",
"main": "./lib/Minesweeper.js",
"repository": "jozsefsallai/discord.js-minesweeper",
"bugs": "https://github.com/jozsefsallai/discord.js-minesweeper/issues",
"author": "József Sallai @jozsefsallai",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^17.0.8",
"@types/seedrandom": "^3.0.1",
"chai": "^4",
"coveralls": "^3.0.0",
"mocha": "^5",
"nyc": "^14.1.1",
"seedrandom": "^3.0.5",
"ts-node": "^10.4.0",
"tslint": "^5",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib"
],
"homepage": "https://github.com/jozsefsallai/discord.js-minesweeper",
"keywords": [
"discord",
"discord.js",
"minesweeper",
"bot",
"discord bot",
"generator"
],
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "tslint --project .",
"prepack": "rm -rf lib && tsc",
"prepare": "rm -rf lib && tsc",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test:cover": "nyc --reporter=lcov --reporter=text npm run test"
},
"types": "lib/Minesweeper.d.ts"
}