This repository has been archived by the owner on May 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "koa-accesscontrol",
"version": "1.0.0",
"description": "Accesss control middleware for koa",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "mocha -t 10000 --require espower-typescript/guess test/**/*.spec.ts",
"test-watch": "mocha -w -t 10000 --require espower-typescript/guess test/**/*.spec.ts",
"prebuild": "rm -rf lib",
"build": "tsc --noEmitOnError",
"lint": "eslint src/**/*.ts test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cernicc/koa-accesscontrol.git"
},
"keywords": [
"accesscontrol",
"koa"
],
"author": "cernicc <rok.cernic@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cernicc/koa-accesscontrol/issues"
},
"homepage": "https://github.com/cernicc/koa-accesscontrol#readme",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"accesscontrol": "^2.2.1",
"koa": "^2.13.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"espower-typescript": "^9.0.2",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"mocha": "^8.2.1",
"power-assert": "^1.6.1",
"prettier": "^2.2.0",
"supertest": "^6.0.1",
"typescript": "^4.1.2"
}
}