-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.22 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": "fantasy-time-crunch",
"version": "0.1.1",
"description": "A way of handling time and time-related state changes in a highly customizable way, for use with games and virtual worlds",
"main": "index.js",
"scripts": {
"lint": "npx prettier --config .prettierrc.json . --write",
"test": "nyc --reporter=html --reporter=text mocha spec",
"test:watch": "mocha spec -w",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,json}": "npx prettier --config .prettierrc.json --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seanohue/fantasy-time-crunch.git"
},
"keywords": [
"time",
"fantasy",
"calendar",
"game",
"gamedev"
],
"author": "Sean O'Donohue",
"license": "MIT",
"bugs": {
"url": "https://github.com/seanohue/fantasy-time-crunch/issues"
},
"homepage": "https://github.com/seanohue/fantasy-time-crunch#readme",
"dependencies": {
"chai": "^4.2.0",
"lodash": "^4.17.11",
"mocha": "^8.1.3",
"sinon": "^7.3.0",
"sinon-chai": "^3.3.0"
},
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=14.13.1",
"npm": ">=6.14.8"
}
}