-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "yoyowjs-ws",
"version": "1.0.0",
"description": "Pure JavaScript yoyow websocket interface for node.js and browsers.",
"browser": {
"ws": false
},
"config": {
"wsdebug": false
},
"scripts": {
"clean": "rimraf ./cjs/* & rimraf ./build/* & rimraf ./es/*",
"prebuild": "npm run clean",
"build": "cross-env BABEL_ENV=cjs babel lib --out-dir cjs",
"build-es": "cross-env BABEL_ENV=es babel ./lib -d es",
"postbuild": "npm run build-es"
},
"repository": {
"type": "git",
"url": "git://github.com/yoyow-org/yoyowjs-ws.git"
},
"author": "YOYOW https://github.com/yoyow-org",
"license": "BSD-2-Clause-FreeBSD",
"bugs": {
"url": "https://github.com/yoyow-org/yoyowjs-ws/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"main": "cjs/index.js",
"jsnext:main": "es/index.js",
"dependencies": {
"ReconnectingWebSocket": "git+https://github.com/bitshares/reconnecting-websocket",
"ws": "^3.3.0"
},
"devDependencies": {
"assert": "^1.3.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"browserify": "^13.0.1",
"mocha": "^2.3.4",
"uglifyjs": "^2.4.10",
"cross-env": "^5.0.0"
}
}