-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "thumbnailfetcher",
"version": "0.0.2",
"description": "command line tool to fetch thumbnail images based on an API input",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"postbuild": "cp package*.json dist && cd dist && npm ci --omit=dev",
"test": "nyc --reporter=lcov mocha --exit --require ts-node/register test/*.ts",
"coverage:badge": "coverage-badge-creator",
"bin": "node dist/bin/index.js"
},
"bin": {
"ts-boilerplate": "dist/bin/index.js"
},
"keywords": [
"ts",
"typescript",
"boilerplate",
"sample",
"example",
"javascript"
],
"author": "Christoph Hoffmann",
"license": "MIT",
"dependencies": {
"commander": "9.4.1",
"axios": "^1.6.5"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "4.1.2",
"@types/mocha": "2.2.48",
"@types/node": "18.11.10",
"chai": "^4.1.2",
"mocha": "^10.2.0",
"coverage-badge-creator": "^1.0.14",
"nyc": "^15.1.0",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"typescript": "^4.7.4"
}
}