-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.63 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
63
64
{
"name": "codewars-node-api",
"version": "2.0.0",
"description": "codewars nodejs api client, with types",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint",
"lint:fix": "npx eslint --fix",
"test": "jest",
"format": "npx prettier --write src",
"clean": "rimraf lib docs",
"build:docs": "npx typedoc src",
"dev:docs": "npx typedoc src --watch && npx http-server docs",
"smoke:docs": "npx http-server docs"
},
"main": "lib/index.js",
"types": "lib/index.d.js",
"files": [
"lib/**/*"
],
"bin": {
"codewars-node-cli": "./lib/codewars-node-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bradtaniguchi/codewars-node-api.git"
},
"homepage": "https://github.com/bradtaniguchi/codewars-node-api/#readme",
"keywords": [
"codewars",
"api",
"node"
],
"author": "bradtaniguchi",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"http-server": "^14.1.0",
"husky": "^8.0.2",
"jest": "^29.7.0",
"lint-staged": "^13.2.1",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"typedoc": "^0.22.15",
"typescript": "~4.7.2"
},
"dependencies": {
"commander": "^11.1.0"
}
}