-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 876 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
{
"name": "renpy-counter",
"version": "0.0.1",
"description": "Estimate the length of your Ren'Py game (i.e. how long an average player plays your game)",
"bin": {
"renpy-counter": "./bin/renpy-counter.js"
},
"main": "index.js",
"scripts": {
"test": "jest --collect-coverage",
"coveralls": "coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/b1f6c1c4/renpy-counter.git"
},
"keywords": [
"renpy"
],
"author": "b1f6c1c4 <b1f6c1c4@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/b1f6c1c4/renpy-counter/issues"
},
"homepage": "https://github.com/b1f6c1c4/renpy-counter#readme",
"dependencies": {
"chalk": "^5.2.0",
"debug": "^4.3.4",
"yargs": "^17.7.1"
},
"devDependencies": {
"coveralls": "^3.1.1",
"jest": "^29.5.0"
}
}