-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.09 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
{
"name": "just-the-cors",
"version": "1.0.1",
"description": "Tiny middleware to add cors support when using zeit's micro",
"keywords": [
"cors",
"micro",
"microservice",
"router",
"routing",
"zeit"
],
"homepage": "https://github.com/iamnapo/just-the-cors#readme",
"bugs": {
"url": "https://github.com/iamnapo/just-the-cors/issues"
},
"repository": "github:iamnapo/just-the-cors",
"license": "MIT",
"author": {
"name": "Napoleon-Christos Oikonomou",
"email": "Napoleonoikon@gmail.com",
"url": "https://iamnapo.me"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint .",
"test": "npm run lint && ava -v"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"devDependencies": {
"ava": "^3.13.0",
"eslint": "^7.10.0",
"eslint-config-iamnapo": "^9.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-unicorn": "^22.0.0",
"got": "^11.7.0",
"husky": "^4.3.0",
"micro": "^9.3.4",
"microrouter": "^3.1.3",
"test-listen": "^1.1.0"
},
"peerDependencies": {
"micro": ">=9"
},
"engines": {
"node": ">=10"
}
}