-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "sv443-joke-api",
"version": "0.1.0",
"description": "JavaScript wrapper for Sv443's Joke API",
"author": {
"name": "Sahithyan",
"email": "sahithyan2701@gmail.com"
},
"types": "dist/types/index.d.ts",
"main": "dist/index",
"unpkg": "web/index.js",
"files": [
"dist",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/sahithyandev/sv433-joke-api-js-wrapper.git"
},
"scripts": {
"docs": "typedoc",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"watch": "webpack --watch",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:types && npm run build:node && npm run build:browser",
"build:node": "webpack --env TARGET=node",
"build:browser": "webpack --env TARGET=web",
"test": "jest",
"pre": "tsc && npm version patch",
"prepack": "npm run build"
},
"keywords": [
"api",
"joke-api"
],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/babel-types": "^7.0.9",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/node-fetch": "^2.5.7",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"copy-webpack-plugin": "^6.3.1",
"jest": "^26.6.3",
"ts-loader": "^8.0.11",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.17.0-3",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}