forked from jcao219/websocket-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "websocket-async",
"version": "1.3.0",
"description": "An async/await WebSocket client for browsers",
"module": "dist/websocket-async.esm.js",
"browser": "dist/websocket-async.umd.js",
"main": "lib/websocket-client.js",
"types": "index.d.ts",
"author": "Jimmy Cao",
"repository": {
"type": "git",
"url": "https://github.com/jcao219/websocket-async.git"
},
"license": "MIT",
"scripts": {
"build": "yarn run build:dist && yarn run build:lib && yarn run build:flow && yarn run build:docs",
"build:dist": "rollup -c",
"build:lib": "babel -d lib src",
"build:flow": "flow-copy-source -v src lib",
"build:docs": "documentation build src/** -f md -o README.md && documentation build src/** -f html -o docs"
},
"files": [
"dist/*.js",
"lib/*.js",
"lib/*.js.flow",
"README.md"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6",
"babel-eslint": "^8.0.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"documentation": "^5.3.3",
"eslint": "^4.9.0",
"eslint-plugin-flowtype": "^2.39.1",
"flow-bin": "^0.57.3",
"flow-copy-source": "^1.2.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.1.5"
}
}