forked from engineersamuel/jwt-redhat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.15 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
{
"name": "jwt-redhat",
"version": "0.2.5",
"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.unminified.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": "^7.0.22",
"@types/webpack": "^3.8.3",
"ava": "^0.23.0",
"btoa-lite": "^1.0.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"localforage": "^1.5.5",
"rimraf": "^2.6.2",
"ts-loader": "^3.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.9.1",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
}
}