-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 KB
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
{
"name": "hlo-api-client",
"version": "1.0.0",
"description": "Access to the HeroLab Online API",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"type": "module",
"scripts": {
"test": "node --loader ts-node/esm test/run.ts",
"cli": "node --loader ts-node/esm src/bin/index.ts",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build:docs": "typedoc",
"prepare": "npm run build",
"eslint": "eslint ./src"
},
"bin": {
"hlo-cli": "./lib/cjs/bin/index.js"
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mdreier/hlo-api-client.git"
},
"keywords": [
"herolab",
"rpg"
],
"author": "Martin Dreier <martin@martindreier.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdreier/hlo-api-client/issues"
},
"homepage": "https://github.com/mdreier/hlo-api-client#readme",
"devDependencies": {
"@types/fetch-mock": "^7.3.3",
"@types/fs-extra": "^9.0.11",
"@types/inquirer": "^7.3.1",
"@types/jasmine": "^3.6.9",
"@types/node-fetch": "^2.5.8",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^33.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"fetch-mock": "^9.11.0",
"fs-extra": "^9.1.0",
"jasmine": "^3.7.0",
"jasmine-console-reporter": "^3.1.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.3"
},
"dependencies": {
"inquirer": "^8.0.0",
"node-fetch": "^3.1.1",
"yargs": "^16.2.0"
}
}