-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.58 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
{
"license": "MIT",
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"build": "rm -rf build && babel --out-dir build source",
"postversion": "git push && git push --tags && npm publish && release",
"prepublish": "yarn run build",
"examples:request-retry": "yarn babel-node examples/request-retry.js"
},
"dependencies": {
"monitoring-stream": "^1.0.0",
"most": "^1.7.2"
},
"repository": {
"type": "git",
"url": "git://github.com/jasonkuhrt/monitoring-stream.git"
},
"keywords": [
"promise",
"async",
"monitor",
"event",
"connection",
"disconnection",
"status",
"ping",
"pong"
],
"author": "Jason Kuhrt <[email protected]> (http://jasonkuhrt.com/)",
"name": "monitoring-stream",
"directories": {
"test": "test"
},
"version": "1.0.0",
"main": "source/main.js",
"description": "Monitor a URI's connectivity",
"devDependencies": {
"babel-cli": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"bluebird": "^3.4.6",
"chai": "^4.1.2",
"eslint": "^3.12.0",
"eslint-config-littlebits": "^0.5.1",
"jest-cli": "^21.2.1",
"ramda": "^0.25.0",
"release": "^2.5.2"
},
"eslintConfig": {
"extends": [
"littlebits"
],
"env": {
"jest": true
}
},
"babel": {
"presets": [
"es2015"
]
},
"bugs": {
"url": "https://github.com/jasonkuhrt/monitoring-stream/issues"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/build/"
]
}
}