-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "koa-jsonwebtoken",
"version": "1.3.1",
"description": "JSON Web Token middleware for Koa",
"keywords": [
"auth",
"authn",
"authentication",
"authz",
"authorization",
"jsonwebtoken",
"node",
"http",
"jwt",
"json",
"middleware",
"token",
"oauth",
"oauth2",
"revoke",
"koa"
],
"scripts": {
"clean": "$(npm bin)/rimraf ./build",
"build": "npm run clean && $(npm bin)/webpack --env.prod",
"postbuild": "$(npm bin)/uglifyjs ./build/index.js -o ./build/index.js --source-map ./build/index.js.map --source-map-root ./main.js --in-source-map ./build/index.js.map --screw-ie8 -c -m",
"watch": "npm run clean && `npm bin`/webpack --env.dev --watch --verbose --hot",
"prepublish": "npm run build",
"test": "node test-server.js"
},
"main": "./build/index.js",
"author": "Siddharth Jain <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/sidjain26/koa-jsonwebtoken"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"koa": "next",
"rimraf": "^2.6.0",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#harmony",
"webpack": "^2.2.1"
},
"dependencies": {
"es6-promisify": "^5.0.0",
"jsonwebtoken": "^7.3.0",
"koa-unless": "^1.0.0"
},
"engines": {
"npm": ">=3.8.6",
"node": ">=6.0.0"
}
}