-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.92 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
74
75
76
77
78
79
80
{
"name": "graph-ig",
"version": "0.0.1",
"description": "Instagram Graph API client",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"private": true,
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wldeh/graph-ig.git"
},
"keywords": [
"instagram-graph-api",
"api",
"social-media",
"instagram",
"cli",
"graph-api"
],
"author": "wldeh",
"license": "MIT",
"homepage": "https://github.com/wldeh/graph-ig#readme",
"bugs": {
"url": "https://github.com/wldeh/graph-ig/issues"
},
"scripts": {
"build": "tsup src/index.ts --dts --minify",
"test": "jest",
"test:coverage": "jest --coverage",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install",
"pre-commit": "lint-staged",
"dev": "tsup --watch",
"clean": "rimraf build",
"prebuild": "npm-run-all clean",
"predev": "npm-run-all clean",
"pretest": "npm-run-all build"
},
"dependencies": {
"ky": "^0.33.3"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@jest/transform": "^29.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"babel-jest": "^29.7.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^13.0.3",
"np": "^7.6.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"tsx": "^3.12.1",
"typedoc": "^0.23.28",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}