-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
75 lines (75 loc) · 1.82 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
{
"name": "nsqjs",
"description": "NodeJS client for NSQ",
"version": "0.8.1",
"homepage": "https://github.com/dudleycarr/nsqjs",
"author": {
"name": "Dudley Carr",
"email": "dudley.carr@gmail.com"
},
"keywords": [
"nsq",
"nsq client",
"nsq client official",
"nsqjs",
"distributed messaging",
"messaging",
"task",
"task management"
],
"repository": {
"type": "git",
"url": "https://github.com/dudleycarr/nsqjs.git"
},
"bugs": {
"url": "https://github.com/dudleycarr/nsqjs/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dudleycarr/nsqjs/blob/master/LICENSE-MIT"
}
],
"scripts": {
"build": "babel src -d build",
"format": "prettier --single-quote --trailing-comma es5 --write \"{src,test}/**/*.js\"",
"lint": "eslint src",
"test": "mocha --compilers js:babel-core/register",
"prepublish": "npm run build",
"postpublish": "rm -rf build"
},
"main": "build/nsq",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-config-prettier": "^1.6.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2",
"nock": "~0.27.1",
"prettier": "^0.22.0",
"should": "^11.1.2",
"sinon": "~1.7.3",
"temp": "^0.8.0"
},
"dependencies": {
"async": "^2.1.4",
"babel-cli": "^6.24.0",
"babel-core": "^6.23.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"bignumber.js": "~1.2.1",
"debug": "^2.6.0",
"moment": "^2.17.1",
"node-int64": "~0.3.0",
"node-state": "~1.4.4",
"request": "^2.79.0",
"snappystream": "^0.3.4",
"underscore": "~1.5.2"
}
}