-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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
{
"name": "reconnectable-websocket",
"version": "0.1.10",
"description": "Reconnectable websocket",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run babel",
"postpublish": "rm -rf lib",
"babel": "babel --optional runtime src --out-dir lib",
"lint": "standard | snazzy",
"test": "npm run babel && npm run lint"
},
"repository": "vmakhaev/reconnectable-websocket",
"keywords": [
"websocket"
],
"author": "Vladimir Makhaev",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.3.19"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21",
"babel-eslint": "^5.0.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"snazzy": "^2.0.1",
"standard": "^5.4.1"
},
"standard": {
"globals": [
"assert",
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach",
"WebSocket"
],
"parser": "babel-eslint"
}
}