-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.05 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@rpidanny/hima",
"version": "1.5.1",
"description": "Download images from Himawari-8 Geo-Stationary Satellite",
"main": "dist/index.js",
"types": "dist/index.d.js",
"bin": {
"hima": "cli.js"
},
"scripts": {
"build": "./node_modules/typescript/bin/tsc -p ./tsconfig.build.json",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && jest ./test/*",
"test:integration": "npm run lint && jest ./test/integration/*",
"test:watch:integration": "jest --watch ./test/integration/*.spec.ts",
"test:watch:integration:image": "jest --watch ./test/integration/image.spec.ts",
"test:watch:integration:images": "jest --watch ./test/integration/images.spec.ts",
"test:watch:integration:timelapse": "jest --watch ./test/integration/timelapse.spec.ts",
"test:unit": "npm run lint && jest ./test/unit/*",
"dev": "ts-node examples/download-color.ts",
"semantic-release": "semantic-release",
"hima": "npm run build && ./cli.js",
"test:test": "npm run lint && jest ./test/integration/image.spec.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpidanny/hima.js.git"
},
"keywords": [
"himawari",
"typescript",
"javascript",
"cli",
"satellite",
"timelapse",
"video",
"ffmpeg"
],
"author": "Abhishek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpidanny/hima.js/issues"
},
"homepage": "https://github.com/rpidanny/hima.js#readme",
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@rpidanny/eslint-config-typescript": "^1.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@types/async-retry": "^1.4.2",
"@types/cli-progress": "^3.7.0",
"@types/fs-extra": "^9.0.1",
"@types/gm": "^1.18.9",
"@types/hapi__joi": "^17.1.4",
"@types/humanize-duration": "^3.18.0",
"@types/jest": "^26.0.8",
"@types/tmp": "^0.2.0",
"eslint": "^7.13.0",
"husky": "^5.0.9",
"jest": "^26.2.2",
"lint-staged": "^11.0.0",
"nock": "^13.0.3",
"prettier": "^2.0.5",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.4",
"ts-node": "^9.0.0",
"tsc": "^2.0.3",
"typescript": "^4.0.2"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"agentkeepalive": "^4.1.3",
"async-retry": "^1.3.1",
"cli-progress": "^3.8.2",
"colors": "^1.4.0",
"commander": "^7.0.0",
"fs-extra": "^10.0.0",
"gm": "^1.23.1",
"got": "^11.5.1",
"humanize-duration": "^3.23.1",
"moment": "^2.27.0",
"tmp": "^0.2.1"
},
"files": [
"dist/**/*",
"cli.js"
],
"publishConfig": {
"access": "public"
}
}