-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "cards",
"description": "Basic playing cards module",
"version": "2.0.3",
"author": "James Brumond <[email protected]> (http://jbrumond.me)",
"scripts": {
"test": "npm run test:unit",
"test:unit": "mocha --config tests/.mocharc.js",
"test:unit:cover": "nyc --nycrc-path tests/.nycrc.js mocha --config tests/.mocharc.js",
"clean": "rimraf ./build ./docs",
"docs": "typedoc --out docs src/index.ts",
"build": "tsc --build tsconfig.json",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git://github.com/kbjr/node-cards.git"
},
"homepage": "https://kbjr.github.io/node-cards/",
"keywords": [
"cards",
"games",
"random",
"shuffle"
],
"main": "build/index.js",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"mochawesome": "^7.1.3",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.3.4"
}
}