-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 997 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
43
{
"name": "mcrsvc",
"version": "1.0.2",
"description": "micro + routes",
"main": "dist/index.js",
"scripts": {
"test": "ava --verbose",
"start": "micro -p 3000",
"prepublish": "npm run build",
"build": "mkdir -p dist && async-to-gen index.js > dist/index.js && async-to-gen router.js > dist/router.js"
},
"ava": {
"require": [
"async-to-gen/register"
],
"files": [
"test/index.js"
]
},
"author": "Dhi Aurrahman <[email protected]>",
"license": "MIT",
"devDependencies": {
"async-to-gen": "^1.3.3",
"ava": "^0.16.0",
"request": "2.78.0",
"request-promise": "^4.1.1"
},
"dependencies": {
"micro": "^7.3.3",
"path-match": "^1.2.4"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diorahman/mcrsvc.git"
},
"bugs": {
"url": "https://github.com/diorahman/mcrsvc/issues"
},
"homepage": "https://github.com/diorahman/mcrsvc#readme"
}