-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.11 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
{
"name": "@jkampich1411/passesapi",
"version": "1.4.6",
"description": "API for Google Wallet Passes",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "shx rm -rf ./dist/*",
"publish-major": "npm run build && npm version major && git add . && git commit -m \"bump major version\" --allow-empty && git push && npm publish",
"publish-minor": "npm run build && npm version minor && git add . && git commit -m \"bump minor version\" --allow-empty && git push && npm publish",
"publish-patch": "npm run build && npm version patch && git add . && git commit -m \"bump patch version\" --allow-empty && git push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkampich1411/PassesApi.git"
},
"author": "jkampich1411",
"license": "ISC",
"dependencies": {
"google-auth-library": "^8.7.0",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.9",
"shx": "^0.3.4",
"typescript": "^4.8"
}
}