-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "gathercontent.js",
"description": "A helpful JS library for GatherContent.",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nock": "^13.0.7",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"private": false,
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "tsc",
"watch": "tsc --watch",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"axios": "^0.21.1",
"axios-rate-limit": "^1.3.0",
"camelcase-keys": "^6.2.2",
"retry-axios": "^2.4.0",
"slugify": "^1.4.6"
},
"author": "GatherContent",
"contributors": [
{
"name": "Kyle Harper",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/gathercontent/gathercontent.js"
},
"version": "1.0.1"
}