-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.66 KB
/
package.json
File metadata and controls
67 lines (67 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
63
64
65
66
67
{
"type": "module",
"name": "@qgisk/jokeapi-wrapper",
"version": "2.0.0",
"description": "Wrapper for Joke API",
"exports": "./index.js",
"files": [
"src",
"src/helpers",
"index.js",
"types"
],
"scripts": {
"test": "ava",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QGIsK/jokeapi-wrapper.git"
},
"keywords": [
"Wrapper",
"API",
"NodeJS",
"Joke",
"JokeAPI"
],
"author": {
"name": "Demian <QGisK>",
"email": "devaccdemiann@gmail.com",
"url": "https://demiann.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/QGIsK/jokeapi-wrapper/issues"
},
"homepage": "https://github.com/QGIsK/jokeapi-wrapper#readme",
"devDependencies": {
"@ava/babel": "^2.0.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@typescript-eslint/parser": "^5.6.0",
"ava": "^3.15.0",
"eslint": ">=8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^7.0.4",
"prettier": "^2.0.5",
"standard-version": "^9.3.2",
"typescript": "^4.5.3"
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0"
},
"ava": {
"babel": true
}
}