-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1000 Bytes
/
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": "activity-auth",
"version": "2.0.0",
"description": "Activity based authorization library and middleware",
"repository": {
"type": "git",
"url": "https://github.com/ryan-mahoney/Activity-Auth"
},
"author": "Ryan Mahoney",
"license": "MIT",
"homepage": "https://github.com/ryan-mahoney/Activity-Auth",
"keywords": [
"authorization",
"middleware"
],
"main": "dist/index.js",
"scripts": {
"build": "node_modules/@babel/cli/bin/babel.js src --out-dir ./dist",
"test": "node_modules/mocha/bin/mocha --require @babel/register"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/register": "^7.12.13",
"assert": "^2.0.0",
"babel-plugin-transform-es2015-modules-simple-commonjs": "^0.3.0",
"babel-plugin-transform-runtime": "^6.23.0",
"mocha": "^8.2.1"
},
"dependencies": {
"every-fn": "^1.0.6",
"njwt": "^1.0.0",
"secure-random": "^1.1.2",
"uuid": "^8.3.2"
}
}