-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.69 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@dadjokes-io/dad-jokes",
"version": "1.0.0",
"description": "A npm wrapper for the dadjokes.io api",
"main": "index.js",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"test:coverage": "jest --config jestconfig.json --collect-coverage",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DadJokes-io/DadJokes-npm.git"
},
"keywords": [
"Dad",
"Jokes",
"Funny",
"API"
],
"author": "DadJokes.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/DadJokes-io/DadJokes-npm/issues"
},
"homepage": "https://github.com/DadJokes-io/DadJokes-npm#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"coveralls": "^3.1.0",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.2"
},
"files": [
"lib/**/*"
],
"publishConfig": {
"access": "public"
},
"types": "lib/index.d.ts",
"restartable": "rs",
"ignore": [
".git",
"node_modules/",
"dist/",
"coverage/"
],
"watch": [
"src/"
],
"execMap": {
"ts": "node -r ts-node/register"
},
"env": {
"NODE_ENV": "development"
},
"ext": "js,json,ts",
"dependencies": {
"axios": "^0.21.1"
}
}