-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
60 lines (60 loc) · 1.54 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
57
58
59
60
{
"name": "permit",
"description": "An unopinionated authentication library for building Node.js APIs.",
"version": "0.2.4",
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/permit.git",
"main": "./lib/index.js",
"files": [
"lib"
],
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint": "^4.12.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-prettier": "^2.5.0",
"lodash": "^4.17.4",
"mocha": "^4.0.1",
"mock-req": "^0.2.0",
"mock-res": "^0.5.0",
"np": "^2.17.0",
"prettier": "^1.10.2"
},
"scripts": {
"build": "babel --out-dir ./lib ./src",
"clean": "rm -rf ./lib ./node_modules",
"lint": "eslint '{src,test}/*' && prettier --list-different '**/*.{js,json,md}'",
"prepublish": "yarn build",
"prettier": "prettier --write '**/*.{js,json,md}'",
"release": "np",
"test": "yarn build && yarn lint && mocha --require babel-core/register ./test/index.js",
"watch": "yarn build --watch"
},
"keywords": [
"api",
"auth",
"authentication",
"authn",
"authorization",
"basic",
"bearer",
"express",
"fastly",
"graphql",
"hapi",
"header",
"koa",
"oauth",
"passport",
"request",
"rest",
"server",
"token"
]
}