-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.93 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
78
{
"name": "@varandas/sunrise-cli",
"version": "0.0.0-development",
"description": "Get the sunrise and sunset for your location, right from your terminal!",
"main": "index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"bin": {
"sunrise": "bin/sunrise"
},
"scripts": {
"test": "jest --config jestconfig.json",
"build": "rimraf lib && tsc",
"build:watch": "tsc --watch",
"commit": "npx git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/AndreVarandas/sunrise-cli.git"
},
"keywords": [
"sunrise",
"sunset",
"terminal",
"cli"
],
"author": "André Varandas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndreVarandas/sunrise-cli/issues"
},
"homepage": "https://github.com/AndreVarandas/sunrise-cli#readme",
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/geoip-lite": "^1.4.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^26.5.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {
"arg": "^4.1.3",
"axios": "^1.6.0",
"chalk": "^4.1.0",
"cli-table": "^0.3.1",
"geoip-lite": "^1.4.2",
"public-ip": "^4.0.2"
},
"files": [
"lib/**/*"
],
"husky": {
"hooks": {
"pre-push": "yarn test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}