-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 968 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
37
38
39
40
41
42
{
"name": "route-v",
"version": "3.0.1",
"repository": "[email protected]:Amri91/route-v.git",
"description": "A tiny route/api semantic versioning library for Koa and Express.",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:coverage",
"test:coverage": "jest tests --coverage",
"test:lint": "eslint index.js"
},
"author": "Abdulrahman Amri <[email protected]> (https://github.com/Amri91)",
"engines": {
"node": ">=8.x"
},
"license": "MIT",
"dependencies": {
"ramda": "latest",
"semver": "^7.1.2",
"tcomb": "^3.2.29"
},
"devDependencies": {
"ajv": "^6.11.0",
"eslint": "^6.8.0",
"eslint-config-warp": "^3.0.0",
"express": "^4.17.1",
"jest": "^25.1.0",
"koa": "^2.11.0",
"koa-router": "^8.0.6",
"supertest": "4.0.2"
},
"keywords": [
"versioning",
"route",
"restful",
"api",
"routes",
"semver",
"koa",
"express"
]
}