-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
40 lines (40 loc) · 979 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
37
38
39
40
{
"name": "kitten-game",
"version": "14.8.0",
"description": "A game of kittens",
"main": "config.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "node tools/generate-buildver.js",
"test": "jest --config jest.config.unittest.json",
"lint": "eslint *.js js/*.js --quiet",
"start": "http-server"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "echo 'commitlint -E HUSKY_GIT_PARAMS'"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuclear-unicorn/kittensgame.git"
},
"keywords": [
"incremental",
"game"
],
"author": "bloodrizer",
"license": "SEE LICENSE IN license.txt",
"homepage": "https://kittensgame.com/",
"devDependencies": {
"eslint": "^7.4.0",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"jest": "^26.1.0"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}