-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1014 Bytes
/
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
{
"name": "settlers",
"version": "1.0.0",
"description": "Core logic for a settlers game instance.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/aydangoon/settlers.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"cli": "node ./build/src/cli.js",
"start": "npm run build && node build/src/index.js",
"test": "mocha --recursive build/tst",
"btest": "npm run build && npm run test",
"coverage": "nyc npm run test",
"build": "rm -rf ./build/ && tsc",
"docs": "typedoc && open doc/index.html",
"dist": "rm -rf ./dist/ && tsc --project ./dist_tsconfig.json"
},
"author": "aydang",
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.5",
"assert": "^2.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
}
}