-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.29 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
59
60
61
62
63
64
65
66
67
68
{
"name": "micro-chain",
"version": "0.0.2",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "cd example && micro index.js",
"build": "babel lib -d dist",
"test": "xo && ava -v test/*.test.js"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"micro",
"microservice",
"microservices",
"API",
"chain",
"service"
],
"author": "",
"license": "ISC",
"dependencies": {
"bl": "^1.2.1",
"bluebird": "^3.5.0",
"full-url": "^1.0.0",
"get-port": "^3.1.0",
"ip": "^1.1.5",
"media-typer": "^0.3.0",
"micro": "latest",
"raw-body": "^2.2.0"
},
"devDependencies": {
"async-sleep": "^0.1.0",
"ava": "^0.22.0",
"babel-cli": "^6.23.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"request": "^2.81.0",
"request-promise": "^4.1.1",
"xo": "^0.18.1"
},
"repository": {
"type": "git",
"url": "https://github.com/dimapaloskin/micro-chain"
},
"xo": {
"space": true,
"rules": {
"object-curly-spacing": [
0
],
"import/no-dynamic-require": [
0
],
"unicorn/no-process-exit": [
0
],
"max-depth": [
0
],
"no-use-extend-native/no-use-extend-native": [
0
]
}
}
}