-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "paw-base64urlencode",
"version": "1.0.0",
"description": "A Paw Extension that allows you to generate a websafe url from a base64 encoding. Used mainly for GrabPay API.",
"license": "MIT",
"author": "Lester Chan <lesterchan@gmail.com> (https://lesterchan.net)",
"homepage": "https://github.com/lesterchan/paw-base64urlencode",
"repository": {
"type": "git",
"url": "git@github.com:lesterchan/paw-base64urlencode.git"
},
"scripts": {
"build": "./node_modules/.bin/webpack",
"lint": "eslint src/*.js"
},
"eslintConfig": {
"extends": "techinasia-base",
"rules": {
"max-len": 0
}
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"babel-loader": "^8.2.2",
"eslint": "~7.26.0",
"eslint-config-techinasia-base": "~0.8.0",
"eslint-plugin-import": "~2.22.1",
"path": "^0.12.7",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.0.0",
"stream-browserify": "^3.0.0"
}
}