-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
{
"name": "secure-route",
"description": "Super simple authentication middleware for Express.",
"author": "Beneath the Ink <[email protected]>",
"contributors": [
{
"name": "Tyler Johnson",
"email": "[email protected]",
"url": "http://github.com/tyler-johnson"
}
],
"repository": {
"type": "git",
"url": "https://github.com/BeneathTheInk/secure-route.git"
},
"main": "index.js",
"scripts": {
"lint": "eslint src/ test/",
"build": "make clean && make",
"prepublish": "npm run build",
"test": "make test",
"autorelease": "autorelease pre && npm publish && autorelease post"
},
"dependencies": {},
"devDependencies": {
"autorelease": "^1.6.0",
"autorelease-github": "^1.1.1",
"autorelease-travis": "^1.2.1",
"babel-eslint": "^5.0.0",
"babel-plugin-external-helpers": "^6.5.0",
"babel-plugin-transform-async-to-generator": "^6.5.0",
"babel-plugin-transform-es2015-destructuring": "^6.6.4",
"babel-plugin-transform-es2015-parameters": "^6.6.4",
"babel-plugin-transform-object-rest-spread": "^6.6.4",
"eslint": "~2.2.0",
"express": "^4.13.4",
"rollup": "^0.25.4",
"rollup-plugin-babel": "^2.4.0",
"supertest": "^1.2.0",
"tape": "^4.5.1"
},
"license": "MIT",
"keywords": [
"authentication",
"authenticate",
"authorization",
"authorize",
"express",
"middleware",
"lockdown",
"secure",
"route"
]
}