forked from engineersamuel/jwt-redhat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "jwt-redhat",
"version": "0.2.13",
"description": "Client side JavaScript library to interact with Red Hat JWT",
"main": "dist/jwt.js",
"types": "src/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"lint": "./node_modules/.bin/tslint 'src/**/*.ts'",
"build": "npm run clean && webpack --config webpack.config.ts --bail --progress --profile",
"patch-release": "npm run build && npm version patch && npm publish && git push --follow-tags",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/redhataccess/jwt"
},
"author": "Samuel Mendenhall <[email protected]> (https://github.com/engineersamuel)",
"license": "MIT",
"devDependencies": {
"@types/node": "^11.13.4",
"@types/webpack": "^4.4.27",
"btoa-lite": "^1.0.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"localforage": "^1.7.3",
"rimraf": "^2.6.3",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.4.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"peerDependencies": {
"localforage": ">=1.7.3"
}
}