-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
101 lines (101 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "zeronode",
"version": "1.1.35",
"description": "Minimal building block for NodeJS microservices",
"main": "./dist/index.js",
"directories": {
"example": "examples"
},
"keywords": [
"micro",
"service",
"microservice",
"micro-service",
"microservices",
"micro-services",
"services",
"micro services",
"micro service",
"networking",
"distributed",
"distributed-message",
"distributed message",
"loadbalancing",
"loadbalance",
"request"
],
"scripts": {
"test": "cross-env NODE_ENV=test nyc --check-coverage mocha --exit --timeout 10000",
"snyktest": "snyk test",
"standard": "standard './src/**/*.js' --parser babel-eslint --verbose | snazzy",
"format": "standard './src/**/*.js' --parser babel-eslint --fix --verbose | snazzy",
"rimraf": "rimraf",
"clear": "rimraf ./dist",
"compile": "./node_modules/.bin/babel -d dist/ src/",
"build": "npm run clear && npm run compile",
"preinstall": "bash preinstall.sh",
"snyk-protect": "snyk protect",
"prepare": "npm run build && npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sfast/zeronode.git"
},
"author": "Steadfast.tech",
"license": "MIT",
"bugs": {
"url": "https://github.com/sfast/zeronode/issues"
},
"homepage": "https://github.com/sfast/zeronode#readme",
"dependencies": {
"@babel/runtime": "^7.5.5",
"animal-id": "0.0.1",
"bluebird": "^3.5.5",
"buffer-alloc": "^1.2.0",
"buffer-from": "^1.1.1",
"lokijs": "^1.5.7",
"md5": "^2.2.1",
"pattern-emitter": "latest",
"underscore": "^1.9.1",
"uuid": "^3.3.2",
"winston": "^3.2.1",
"zeromq": "4.6.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"js-yaml": "^3.13.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"seneca": "^3.13.2",
"snazzy": "^8.0.0",
"snyk": "^1.216.1",
"standard": "^13.1.0"
},
"snyk": true,
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
}
}