This repository has been archived by the owner on Feb 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.27 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
{
"name": "simple-github-gist-api",
"version": "2.0.124",
"description": "A way to store data on Github Gist.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"prepare": "husky install",
"cleanup": "rimraf dist",
"build:pre-requisite": "npm run test",
"build:declaration": "tsc",
"build": "npm run cleanup && npm run build:pre-requisite && npm-run-all build:*",
"test:watch": "jest --watch",
"prettier:fix": "prettier -w ./src/**/*.ts -w ./src/**/*.tsx --no-error-on-unmatched-pattern true",
"lint:fix": "eslint --fix ./src/**/*.ts --fix ./src/**/*.tsx --no-error-on-unmatched-pattern true",
"git:rebase": "git fetch && git rebase origin/master",
"release": "npm run git:rebase && npm run build && standard-version && git push --follow-tags && npm publish --access=public",
"lint": "eslint src/*"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:vighnesh153/simple-github-gist-api.git"
},
"keywords": [
"gist",
"storage",
"gist db",
"database",
"github",
"free"
],
"author": "Vighnesh Raut",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/vighnesh153/simple-github-gist-api/issues"
},
"homepage": "https://github.com/vighnesh153/simple-github-gist-api#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^1.0.0"
}
}