generated from golota60/node-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "termi-clicker",
"author": "Szymon Wiszczuk<[email protected]>",
"version": "0.0.15",
"description": "A programming-themed clicker game for your terminal!",
"main": "./lib/index.js",
"license": "MIT",
"homepage": "https://github.com/golota60/termi-clicker#readme",
"repository": {
"type": "git",
"url": "https://github.com/golota60/termi-clicker"
},
"files": [
"lib"
],
"hooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": "yarn test"
},
"bin": {
"termi-clicker": "./lib/index.js"
},
"engines": {
"node": ">=14.16"
},
"keywords": [
"clicker",
"cookie clicker",
"game",
"clicker game"
],
"publishConfig": {
"access": "public",
"directory": "lib"
},
"scripts": {
"build": "rimraf lib && tsc",
"start": "yarn build && NODE_ENV=development node lib/index.js",
"clean": "rimraf lib",
"lint": "yarn eslint --ext '.js,.ts' ./src --fix",
"jest": "jest tests",
"test": "yarn start && yarn lint && yarn jest",
"prepare": "husky install",
"prepublishOnly": "git push --tags && yarn && yarn build",
"release": "standard-version"
},
"dependencies": {
"chalk": "^4.0.0",
"inquirer": "^8.2.4",
"log-update": "^4.0.0",
"telejson": "^6.0.8"
},
"devDependencies": {
"@callstack/eslint-config": "^12.0.2",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.8.0-dev.20220514"
}
}